API reference
Get fulfillment order
Returns one fulfillment order with its items, its assigned location and its state.
GET
/v1/fulfillment/orders/{id}Returns one fulfillment order with its items, its assigned location and its state.
Authorization
bearerAuth AuthorizationBearer <token>
OAuth2 access token issued by Ecomiq Auth.
In: header
Path Parameters
id*string
Unique identifier of the resource.
Response Body
application/json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
curl -X GET "https://example.com/v1/fulfillment/orders/string"{ "id": "string", "orderId": "string", "orderNumber": "string", "locationId": null, "locationName": null, "status": "pendingAssignment", "shippingConnectionId": null, "packageId": null, "shipmentId": null, "trackingNumber": null, "trackingLink": null, "labelUrl": null, "carrierName": null, "items": [ { "orderItemId": "string", "productId": null, "variantId": null, "title": "string", "sku": null, "quantity": 0.1, "shippedQuantity": 0.1, "remainingQuantity": 0.1 } ], "shipments": [ { "id": "string", "packageId": null, "shipmentId": null, "trackingNumber": null, "trackingLink": null, "labelUrl": null, "carrierName": null, "items": [ { "orderItemId": "string", "sku": null, "quantity": 0.1, "weight": 0.1 } ], "createdOn": "2019-08-24T14:15:22Z" } ], "createdOn": "2019-08-24T14:15:22Z", "updatedOn": null}