1. Standard Delivery
MOVER BUSINESS API
  • Orders
    • On Demand
      • Estimate / Coverage
      • Create Order (On Demand)
      • Status
      • Partner Location
      • Invoice
      • Cancel
    • Standard Delivery
      • Dispatch Order(s)
        POST
      • Order(s) Status
        POST
      • Cancel Order
        POST
  • Webhooks
    • On Demand
      • Trip Level
        • OrderCreated
        • TripStarted
        • BillGenerated
        • PartnerAssigned
        • Cancelled
        • TripEnded
      • Location Point Level
        • Arrived
        • Delivered
        • Return Started
        • Returned To Origin
        • Cancelled
        • Liquidated
      • Webhook (Legacy)
    • Standard
      • InTransit
      • Arrived
      • Delivered
      • Return Started
      • Returned To Origin
      • Cancelled
      • Liquidated
  1. Standard Delivery

Cancel Order

POST
https://api.boxnmove.combusiness/standard/dispatch/cancel
Cancel an active order using its Client Reference ID.
Only orders belonging to the authenticated enterprise can be cancelled.

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

🟠404Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.boxnmove.combusiness/standard/dispatch/cancel' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
  "clientRefId": "REF123456",
  "reason": "Customer asked to cancel"
}'
Response Response Example
200 - Success
{
  "success": true,
  "message": "Order cancelled successfully",
  "data": {
    "clientRefId": "REF123456",
    "status": "Cancelled"
  }
}
Modified at 2026-02-17 14:07:49
Previous
Order(s) Status
Next
Webhooks
Built with