| Parameter | Description |
|---|---|
| salesId | Sales Order ID returned from the Create Sales Order API |
| branch_id | Branch ID for which the order status needs to be checked |
| Field | Description |
|---|---|
| salesId | Unique identifier of the sales order |
| orderStatus | Current status of the order |
| paymentStatus | Current payment status |
| deliveryStatus | Current delivery status |
| updatedAt | Date and time when status was last updated |
salesId received from the Create Sales Order API.salesId in your system for future status tracking.curl --location '/api/v1/sales/order-status/30801778?branch_id=24448' \
--header 'api-token: a6f919n4-4370-47a6-ad48-d3d6f719e3b0' \
--header 'Content-Type: application/json'{
"status": true,
"message": "Success",
"code": "200",
"response": {
"salesId": 30462838,
"orderStatus": "Delivered",
"paymentStatus": "Paid",
"deliveryStatus": "Delivered",
"updatedAt": "2026-06-09T09:40:49.870+00:00"
}
}