/
Cancel Inbound Delivery
This endpoint allows you to cancel an inbound delivery that is in BOOKED or IN_PROGRESS status. Cancellation is a soft delete - the record remains in the database with status CANCELLED. The system handles cleanup of the WMS ASN, scheduling event, and facility notification.
- Cancelling a delivery that is no longer needed - Rescheduling by cancelling and rebooking with new details
- Only inbounds in
BOOKEDorIN_PROGRESSstatus can be cancelled - You can only cancel your own inbounds (unless you are an admin)
Security
OAuth2
- Mock serverhttps://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inbounds/{id}/cancel
- Productionhttps://platform-api.quiqup.com/api/fulfilment/inbounds/{id}/cancel
- Staginghttps://platform-api.staging.quiqup.com/api/fulfilment/inbounds/{id}/cancel
curl -i -X POST \
'https://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inbounds/{id}/cancel' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"reason": "string"
}'Response
{ "message": "string" }