/
Update Inbound Delivery
This endpoint allows you to update an existing inbound delivery with courier details, gate pass information, and/or schedule a PENDING inbound.
- Adding courier/gate pass details (plate number, courier name, contact) to an inbound - Attaching documents such as emirates ID, vehicle registration, or gate passes - Scheduling a PENDING inbound by providing slot times and attendees
Security
OAuth2
Optional: Required when slot times are provided for scheduling
Optional: For coordination during delivery
Optional: For gate pass and identification purposes
Optional: Supporting documents like emirates_id, vehicle_registration, gate_pass, etc.
Optional: For gate pass and security purposes
Optional: When provided with slot_start_at, schedules a PENDING inbound to BOOKED
- Mock serverhttps://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inbounds/{id}
- Productionhttps://platform-api.quiqup.com/api/fulfilment/inbounds/{id}
- Staginghttps://platform-api.staging.quiqup.com/api/fulfilment/inbounds/{id}
curl -i -X PATCH \
'https://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inbounds/{id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"attendees": [
"string"
],
"courier_contact": "string",
"courier_name": "string",
"documents": [
{
"content_base64": "string",
"document_type": "string",
"file_name": "string",
"file_size": 0,
"file_url": "string",
"mime_type": "string"
}
],
"plate_number": "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" }