This endpoint retrieves the details of an existing fulfilment order using its unique ID.
- Checking the status of a previously created fulfilment order.
- Retrieving tracking details to share with customers.
- Confirming order information before dispatch or customer communication.
- Verifying payment and service type for an order.
Security
OAuth2
- Mock serverhttps://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/orders/{id}
- Productionhttps://platform-api.quiqup.com/api/fulfilment/orders/{id}
- Staginghttps://platform-api.staging.quiqup.com/api/fulfilment/orders/{id}
curl -i -X GET \
'https://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/orders/{id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Success response
Possible values: leave_at_door, customer_identification_photo
Items Value:"customer_identification_photo"
referencesArray of objects(External identifiers attached to the order at creation (label/value pairs).
)
Echoes back whatever was sent in the create request's `references`.
Possible values: partner_next_day, partner_same_day, partner_4hr, partner_export, partner_store
Enum:"pending""ready_for_collection""picking_started""out_for_collection""out_for_return""at_depot""received_at_depot""in_transit""out_for_delivery""collection_failed"
Response
{ "billing_address": { "address1": "string", "address2": "string", "city": "string", "coordinate": { … }, "country": "string", "country_code": "string", "created_at": "2019-08-24T14:15:22Z", "email": "string", "first_name": "string", "ksa_national_address": "string", "last_name": "string", "name": "string", "notes": "string", "phone": "string", "postcode": "string", "state": "string", "updated_at": "2019-08-24T14:15:22Z" }, "carrier": "string", "created_at": "2019-08-24T14:15:22Z", "currency": "string", "delivery_options": [ "customer_identification_photo" ], "errors": [ { … } ], "id": "string", "incoterm": "string", "initial_order_id": "string", "is_return": true, "notes": "string", "origin_address": { "address1": "string", "address2": "string", "city": "string", "coordinate": { … }, "country": "string", "country_code": "string", "created_at": "2019-08-24T14:15:22Z", "email": "string", "first_name": "string", "ksa_national_address": "string", "last_name": "string", "name": "string", "notes": "string", "phone": "string", "postcode": "string", "state": "string", "updated_at": "2019-08-24T14:15:22Z" }, "parcels": [ { … } ], "partner_order_id": "string", "payment_amount": 0, "payment_mode": "pre_paid", "picking_order_created": true, "products": [ { … } ], "references": [ { … } ], "service_kind": "string", "shipping_address": { "address1": "string", "address2": "string", "city": "string", "coordinate": { … }, "country": "string", "country_code": "string", "created_at": "2019-08-24T14:15:22Z", "email": "string", "first_name": "string", "ksa_national_address": "string", "last_name": "string", "name": "string", "notes": "string", "phone": "string", "postcode": "string", "state": "string", "updated_at": "2019-08-24T14:15:22Z" }, "status": "pending", "status_reason": "string", "tracking_url": "string", "tracking_url_advance": "string", "updated_at": "2019-08-24T14:15:22Z", "uuid": "string" }