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

Dispatch Order(s)

POST
https://api.boxnmove.combusiness/standard/dispatch
Submit one or more Standard Delivery orders to the MOVER dispatch system.
Each order is validated and checked for duplicates before being queued for dispatch. Once accepted, the orders enter the allocation workflow and delivery lifecycle.
Delivery updates—such as delivery attempts, failures, and Return-to-Origin (RTO) events—will be sent asynchronously to the webhook endpoint configured for your account.
This endpoint supports bulk uploads.

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

🟠400
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.boxnmove.combusiness/standard/dispatch' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '[
  {
    "latitude": 28.6139,
    "longitude": 77.2090,
    "address": "221B Connaught Place, New Delhi",
    "deliveryNote": "Call before arrival",
    "contactMobile": "9876543210",
    "contactName": "Rahul Sharma",
    "otp": "4589",
    "clientRefId": "ORD10001",
    "weight": 2.5,
    "quantity": 1,
    "city": "Delhi",
    "amount": 750,
    "paymentMode": "Prepaid",
    "orderDate": "2026-01-24T10:30:00Z",
    "PinCode": "122018"
  },
  {
    "latitude": 28.4595,
    "longitude": 77.0266,
    "address": "DLF Cyber Hub, Phase 3",
    "deliveryNote": "Security gate pickup",
    "contactMobile": "9123456789",
    "contactName": "Amit Verma",
    "otp": "",
    "clientRefId": "ORD10002",
    "weight": 1.2,
    "quantity": 2,
    "city": "Gurugram",
    "amount": 1200,
    "paymentMode": "Cod",
    "orderDate": "2026-01-24T12:00:00Z",
    "PinCode": "122018"
  }
]'
Response Response Example
200 - Success
{
    "Success": true,
    "Message": "Orders dispatched successfully",
    "Data": {
        "Count": 2
    },
    "Errors": null
}
Modified at 2026-03-16 05:54:50
Previous
Cancel
Next
Order(s) Status
Built with