Status History

The Status Inquiry method is used to retrieve the status history of a specific shipment using its tracking number. This method allows you to track the progress of a delivery by fetching its status updates from the system. To use this method, send a POST request to the following endpoint:

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

Request Body Parameters

Parameters Type Character Limit Required Description

Request

curl --location --request POST 'https://test.xpl.ph/Api/API/Waybill/StatusInquiry' --header 'Authorization: Bearer < AUTHENTICATION_TOKEN >' --header 'Content-Type: application/json' --data-raw '{ "TrackingNumber": "RDRXTEST20230307-012" }'

Response Body Parameters

Parameters Type Description

Response

{ “success”: true, “currentStatus”:{ "StatusDate": "2022-06-14 00:00:00", "Status": "Delivered", "latitude": "1.1", "longitude": "2.2", "Remarks": "Updated by: XPL ", "Imagelink":"riderx.team/image", "signaturelink":"riderx.team/image" }, “trackingHistoryStatus”: [ { "StatusDate": "2022-06-14 00:00:00", "Status": "Delivered", "latitude": "1.1", "longitude": "2.2", "Remarks": "Updated by: XPL ", "Imagelink":"riderx.team/image", "signaturelink":"riderx.team/image" } , { "StatusDate": "2022-06-14 00:00:00", "Status": "Delivered", "latitude": "1.1", "longitude": "2.2", "Remarks": "Updated by: XPL ", "Imagelink":"riderx.team/image", "signaturelink":"riderx.team/image" } ] }