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

Order(s) Status

POST
https://api.boxnmove.combusiness/standard/dispatch/status
Fetch real-time dispatch status and delivery timeline for one or more orders using Client Reference IDs

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

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.boxnmove.combusiness/standard/dispatch/status' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '[
    "ORD10001",
    "ORD10002"
]'
Response Response Example
{
    "Success": true,
    "Message": "Order status fetched",
    "Data": {
        "requested": 2,
        "found": 2,
        "notFound": [],
        "orders": [
            {
                "StatusId": 5,
                "Status": "RTO Delivered",
                "ClientRefId": "ORD10001",
                "ClientName": "Demo  EP",
                "ContactName": "Rahul Sharma",
                "ContactMobile": "9876543210",
                "Address": "221B Connaught Place, New Delhi",
                "Amount": 750.0,
                "Weight": 2.5,
                "PaymentMode": 1,
                "OrderDate": "2026-01-24T10:30:00",
                "ArrivedAt": "2026-01-25T10:02:44.244321",
                "ImageUrl": null,
                "PartnerName": "name",
                "PartnerMobile": "8307228124",
                "OrderId": "NCRSUTI7X23",
                "Attempt": 2,
                "City": "Delhi",
                "Timeline": [
                    {
                        "OrderId": "NCRSUTI7X23",
                        "ClientRefId": "ORD10001",
                        "StatusId": 1,
                        "Status": "In Transit",
                        "Remark": "Out for delivery",
                        "Timestamp": "2026-01-25T10:02:35.745363"
                    },
                    {
                        "OrderId": "NCRSUTI7X23",
                        "ClientRefId": "ORD10001",
                        "StatusId": 2,
                        "Status": "Arrived",
                        "Remark": null,
                        "Timestamp": "2026-01-25T10:02:44.25094"
                    },
                    {
                        "OrderId": "NCRSUTI7X23",
                        "ClientRefId": "ORD10001",
                        "StatusId": 4,
                        "Status": "Return Started",
                        "Remark": null,
                        "Timestamp": "2026-01-25T10:02:53.791862"
                    },
                    {
                        "OrderId": "NCRSUTI7X23",
                        "ClientRefId": "ORD10001",
                        "StatusId": 5,
                        "Status": "RTO Delivered",
                        "Remark": null,
                        "Timestamp": "2026-01-25T10:03:08.377793"
                    }
                ]
            },
            {
                "StatusId": 7,
                "Status": "Returned to Warehouse",
                "ClientRefId": "ORD10002",
                "ClientName": "Demo  EP",
                "ContactName": "Amit Verma",
                "ContactMobile": "9123456789",
                "Address": "DLF Cyber Hub, Phase 3",
                "Amount": 1200.0,
                "Weight": 1.2,
                "PaymentMode": 2,
                "OrderDate": "2026-01-24T12:00:00",
                "ArrivedAt": "2026-01-25T10:07:02.768604",
                "ImageUrl": null,
                "PartnerName": "name",
                "PartnerMobile": "8307228124",
                "OrderId": "NCRSUTI7X23",
                "Attempt": 2,
                "City": "Gurugram",
                "Timeline": [
                    {
                        "OrderId": "NCRSUTI7X23",
                        "ClientRefId": "ORD10002",
                        "StatusId": 1,
                        "Status": "In Transit",
                        "Remark": "Out for delivery",
                        "Timestamp": "2026-01-25T10:02:35.754567"
                    },
                    {
                        "OrderId": "NCRSUTI7X23",
                        "ClientRefId": "ORD10002",
                        "StatusId": 2,
                        "Status": "Arrived",
                        "Remark": null,
                        "Timestamp": "2026-01-25T10:07:02.770391"
                    },
                    {
                        "OrderId": "NCRSUTI7X23",
                        "ClientRefId": "ORD10002",
                        "StatusId": 4,
                        "Status": "Return Started",
                        "Remark": null,
                        "Timestamp": "2026-01-25T10:09:54.378451"
                    },
                    {
                        "OrderId": "NCRSUTI7X23",
                        "ClientRefId": "ORD10002",
                        "StatusId": 7,
                        "Status": "Returned to Warehouse",
                        "Remark": null,
                        "Timestamp": "2026-01-25T10:11:02.280563"
                    }
                ]
            }
        ]
    },
    "Errors": null
}
Modified at 2026-02-17 14:07:32
Previous
Dispatch Order(s)
Next
Cancel Order
Built with