Skip to main content
POST
Get Availability
This endpoint is only available for shipments with SCHEDULED_DELIVERY fulfillment type. It returns available delivery dates and time slots for scheduling deliveries.

Request

string
required
The merchant’s domain (e.g. staging.luma.gift)
string
required
Device authentication token for session identification
string
required
Target shipment identifier

Response

This endpoint only works for shipments that have been configured with SCHEDULED_DELIVERY fulfillment type. For other fulfillment types, this endpoint is not applicable.
string
The shipment identifier
object
Current fulfillment configuration (will always be SCHEDULED_DELIVERY)Properties:
  • id (string): Fulfillment type identifier: SCHEDULED_DELIVERY
  • name (string): Display name for the fulfillment type
  • description (string): Detailed description of the fulfillment method
array
List of available delivery dates with time slotsDate Properties:
  • date (string): Date in YYYY-MM-DD format
  • description (string): Description of the delivery option
  • time_slots (array): Available time slots for this date
Time Slot Properties:
  • slot_id (string): Unique identifier for the time slot
  • start_time (string): Start time in 24-hour format (HH:MM)
  • end_time (string): End time in 24-hour format (HH:MM)
  • description (string): Human-readable description
  • available (boolean): Whether the slot is available for selection
array
Premium delivery window options (if available)Properties:
  • window_id (string): Unique window identifier
  • name (string): Window display name
  • description (string): Detailed window description
  • price (object): Additional cost for this window
  • date_range (object): Available date range
    • start_date (string): First available date
    • end_date (string): Last available date

Example Request

Example Response

Usage Pattern

This endpoint is specifically designed for scheduled delivery scenarios where customers need to select specific delivery dates and time slots.

Scheduled Delivery Flow

  1. Ensure shipment has SCHEDULED_DELIVERY fulfillment type set
  2. Call this endpoint to get available delivery dates and time slots
  3. Customer selects preferred delivery date and time slot
  4. Use Set Shipping Method with the selected date and slot
  5. Complete checkout with scheduled delivery information

Prerequisites

  • Shipment must already exist in the cart
  • Shipment must have SCHEDULED_DELIVERY fulfillment type configured
  • Shipping address must be set on the cart

Error Codes