DispatchOne Solution
...
Integrate with Logistics Order
How to: Get Batch Orders Status
4 min
prerequisite for information about prerequisites, see integrate with integrate with logistics order docid\ lgpwxpxeuqvfmdy eddbd retrieve batch order status to retrieve the status of an existing batch order, send a get request to /orders/batch/{batchid} with the unique batchid of the batch order this request will return the current status of the batch order execution, including details about the processing state endpoint get orders/batch/{batchid} sample request the request body is specified in json format below is a sample request structure for retrieving the status of an existing batch order json get /orders/batch/{batchid} host \<https //{domain}/app/logisticsorders/v1/api> request id \<request id> tenant id \<tenant id> authorization bearer \<access token> user info token \<user info token> replace {batchid} with the unique identifier of the batch order you want to retrieve the headers like request id , tenant id , authorization , and user info token are required and should be populated with appropriate values sample response { "data" { "id" "string", "status" "partial success", "successcount" 1, "failurecount" 1, "totalcount" 2, "tenantid" "tenant", "successdetails" \[ { "clientorderid" "string" } ], "failuredetails" \[ { "clientorderid" "string", "errors" \[ { "message" "returnslot from must be greater than current timestamp in milliseconds", "label" "returndetails returnslot from", "code" "f a2137 e4012", "meta" {} } ] } ] }, "request" { "uri" "string", "method" "post", "querystring" "string", "body" {} } }