Fulfillment Type
The API for fulfillment types can display details of delivery options.
Users can utilize the objects to understand and select the desired fulfillment type for their orders.
Retrieve List
Users can choose the type of fulfillment they prefer. This API allows retrieval of the available fulfillment options.
Headers
The server accepts JSON-formatted responses.
Parameters
sku
string *The param specifies the stock keeping unit.
zip_code
number *The param specifies the zip code of the area.
without_eta
number *Attributes
sku
stringIt indicates the code of stock keeping unit.
fulfillment_types
array of objectsfulfillment_type
numberIt contains the id of the fulfillment type.
fulfillment_type_name
stringIt shows the name of the fulfillment type.
is_disable
numberIt indicates the option which is chosen.
estimated_availability
stringIt shows the estimation of fulfillment type availability.
estimated_availability_desc
stringIt shows the description of fulfillment type availability.
installation_availability
nullIt is optional to use this.
pickup_time
nullIt is optional to use this.
pickup_time_availability
nullIt is optional to use this.
pickup_time_availability_desc
nullIt is optional to use this.
pickup_time_post_desc
nullIt is optional to use this.
GET /api/v2/fulfillment-type/listcurl --location 'https://appliance-api.com/api/v2/fulfillment-type/list?zip_code=63005&sku=GNE27JYMFS' \
--header 'Accept: application/json' \
--header 'x-api-key: your_api_key' \
--header 'x-tenant-id: your_tenant_id'
{
"code": "200",
"message": "Success",
"data": [
{
"sku": "GNE27JYMFS",
"fulfillment_types": [
{
"fulfillment_type": 1,
"fulfillment_type_name": "Local Delivery Only",
"is_disable": 0,
"estimated_availability": "Wed, Nov 22nd",
"estimated_availability_desc": "Guaranteed by",
"installation_availability": null,
"installation_availability_desc": null,
"pickup_time": null,
"pickup_time_availability": null,
"pickup_time_availability_desc": null,
"pickup_time_post_desc": null
},
{
"fulfillment_type": 3,
"fulfillment_type_name": "Local Delivery & Install",
"is_disable": 0,
"estimated_availability": null,
"estimated_availability_desc": null,
"installation_availability": "Wed, Nov 22nd",
"installation_availability_desc": "Guaranteed by",
"pickup_time": null,
"pickup_time_availability": null,
"pickup_time_availability_desc": null,
"pickup_time_post_desc": null
},
{
"fulfillment_type": 2,
"fulfillment_type_name": "Pickup",
"is_disable": 0,
"estimated_availability": null,
"estimated_availability_desc": null,
"installation_availability": null,
"installation_availability_desc": null,
"pickup_time": "tomorrow",
"pickup_time_availability": null,
"pickup_time_availability_desc": null,
"pickup_time_post_desc": "Ready at 09:30 AM"
}
]
}
],
"meta": null,
"errors": null
}