Skip to content

Cancel Inbound Delivery

Request

Cancel an Inbound Delivery

Description

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.

Use Cases

  • Cancelling a delivery that is no longer needed - Rescheduling by cancelling and rebooking with new details

Restrictions

  • Only inbounds in BOOKED or IN_PROGRESS status can be cancelled - You can only cancel your own inbounds (unless you are an admin)
Security
OAuth2
Path
idstringrequired
Bodyapplication/json
reasonstring(Reason for cancelling the inbound )

Optional: Helpful for audit trail

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"
  }'

Responses

Success response

Bodyapplication/json
messagestring(Confirmation message )required
Response
{ "message": "string" }