Order API (v0)
Download OpenAPI specification:Download
This API allows you to retrieve order level information. Currently, the API allows you to retrieve a list of up to 2000 fulfillment requests for an order.
This includes fulfillment requests from a store or DC.
You can also use this resource to check the status of each item in the fulfillment request, and perform a reconciliation with your ERP.
To accept, reject, or retrieve the status of fulfillment requests, see the Fulfillment provider API.
List fulfillment requests for an order
Returns a list of up to 2000 fulfillment requests for an order. Use this method to check the status of items in a fulfillment request for an order ID.
Authorizations:
path Parameters
order_uuid required | string Unique ID for an order. |
Responses
Response samples
- 200
- 400
- 500
Sample response when a search for fulfillment requests is successful. A list of fulfillment requests are returned for the order ID.
{- "fulfillment_requests": [
- {
- "line_items": [
- {
- "item_id": "5b7d3e35-321e-984a-8b9c-d16bc31bfb",
- "product_id": "35510TshirtXXXL",
- "status": "shipped"
}
], - "id": "4447-4ff9-b7e6-f4019a9f3bec",
- "fulfillment_node_id": "NYC_001",
- "service_level": "IN_STORE_HANDOVER",
- "created_at": "2012-04-23T18:25:43.511Z"
}
]
}