GET https://api.ecartapi.com/api/v2/orders/{{orderId}}/fulfillments
Shows all of the order's fulfillments detailed. Important information:
FILTERS
Filter
Description
limit
Limit size of the search
page
Pagination number.
sinceId
Filter fullfilments since the Id given
'createdAt[from]'
Filter fullfilments by date created from. When used
createdAt[to]
'createdAt[to]'
Filter fullfilments by date created to. When used
createdAt[from]
'updatedAt[from]'
Filter fullfilments by date updated from. When used
createdAt[to]
'updatedAt[to]'
Filter fullfilments by date updated to. When used
createdAt[from]
name
Filter fullfilments by name
email
Filter fullfilments by email
Body
PARAM
Key | Datatype | Required | Description |
HEADERS
Key | Datatype | Required | Description |
Content-Type
|
string | ||
Authorization
|
string |
RESPONSES
status OK
{
"success": true,
"fulfillments": [
{
"id": "4081781375231",
"shippingMethod": {
"id": null,
"service": "manual"
},
"tracking": {
"number": "123456789",
"url": "https://shipping.xyz/track.php?num=123456789",
"company": "prueba",
"numbers": [
"123456789",
"987654321"
],
"urls": [
"https://shipping.xyz/track.php?num=123456789",
"https://shipping.xyz/track.php?num=987654321"
]
},
"status": {
"id": null,
"status": "success",
"shipment": null
},
"location": {
"id": "65739555071",
"name": "Vasconcelos 1400",
"country": {
"code": "MX",
"name": "Mexico"
},
"state": {
"code": "NL",
"name": "Nuevo León"
},
"postalCode": "66236"
},
"items": [
{
"id": "11815016923391",
"variantId": "41930245505279",
Curl curl -X GET 'https://api.ecartapi.com/api/v2/orders/orderId/fulfillments' -H 'Content-Type: application/json' -H 'Authorization: access_token' ENDPOINTS |