/
Schedule Inbound Delivery...
This endpoint allows you to schedule a previously unscheduled (PENDING) inbound delivery by providing slot times and attendees. The inbound will transition from PENDING to BOOKED and the full scheduling workflow (ASN creation, calendar booking, notifications) will be triggered.
- Scheduling a delivery that was created without dates - Setting delivery times for a pending inbound after coordination with the warehouse
Security
OAuth2
Optional: If provided, attendees will be associated with the inbound
Required: Must be after slot_start_at
- Mock serverhttps://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inbounds/{id}/schedule
- Productionhttps://platform-api.quiqup.com/api/fulfilment/inbounds/{id}/schedule
- Staginghttps://platform-api.staging.quiqup.com/api/fulfilment/inbounds/{id}/schedule
curl -i -X POST \
'https://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inbounds/{id}/schedule' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"attendees": [
"string"
],
"slot_end_at": "2019-08-24T14:15:22Z",
"slot_start_at": "2019-08-24T14:15:22Z"
}'Response
{ "asn_id": "string", "inbound_id": "string", "status": "string" }