Dispatch

The Dispatch method is used to create or update a dispatch for a delivery service. This method allows you to specify details such as the dispatch type, origin and destination warehouses, assigned rider, vehicle type, logistics provider, and tracking numbers of the packages to be dispatched. To use this method, send a POST request to the following endpoint:

Environment Host Endpoint
Test
https://test.xpl.ph/Api/
API/Waybill/Dispatch
Live
https://api.riderx.team/v2/
API/Waybill/Dispatch

Request Body Parameters

Parameters Type Character Limit Required Description

Request

curl --location --request POST 'https://test.xpl.ph/Api/API/Waybill/Dispatch' --header 'Authorization: Bearer < AUTHENTICATION_TOKEN >' --header 'Content-Type: application/json' --data-raw '{ "DispatchType": "Last Mile", "OriginWarehouse": "", "DestinationWarehouse": "", "RiderXNumber": "639178225677", "Vehicle": "Motorcyle", "LogisticsProvider": "RiderX", "Remarks": "", "TrackingNumbers":["XPL001","XPL002", "XPL003","XPL004"] } '

Response Body Parameters

Parameters Type Description

Response

{ "success”:true, “successDispatch”: ["XPL001"], “notfoundDispatch”: ["XPL003”], “alreadyDispatched”: [“XPL004”], “terminatingstatus”: [“XPL002”] }