Gets all order's fulfillments
GET https://api.ecartapi.com/api/v2/orders/{{orderId}}/fulfillments
Shows all of the order's fulfillments detailed.
Important information:
- Filters are subject to ecommerce.
- The order's ID must exist
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
limit | string | Limit size of the search | |
page | string | Pagination number or token (Only when page object is available in response) | |
sinceId | string | Filter items since the Id given | |
createdAt[from] | string | Filter items by date created from. | |
createdAt[to] | string | Filter items by date created to. | |
updatedAt[from] | string | Filter items by date updated from. | |
updatedAt[to] | string | Filter items by date updated to. | |
allStores | string | Search items in all stores. ONLY Shiphero. | |
offset | string | Lower limit of the results block. Modifies the range of the results provided, range goes from offset to limit | |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string | ||
Authorization | string |
RESPONSES
status: OK
{"success":true,"fulfillments":[{"id":"3974077743281","shippingMethod":{"id":null,"service":"manual"},"tracking":{"number":"987654321","url":"https://shipping.xyz/track.php?num=123456789","company":"FedEx"},"status":{"id":null,"status":"success","shipment":null},"location":{"id":"53355577521","name":"Vasconcelos 1400","country":{"code":"MX","name":"Mexico"},"state":{"code":"NL","name":"Nuevo León"},"postalCode":"66236"},"items":[{"id":"11436893962417","variantId":"41293246628017","productId":"7096605671601","quantity":"1","ecartapiUrl":"https://api.ecartapi.com/api/v2/products/7096605671601"}],"packages":[],"dates":{"createdAt":"2022-04-29T11:37:15-04:00","updatedAt":"2022-04-29T11:37:15-04:00","shippedAt":null}}]}