Delivery Inquiry

The Delivery Inquiry method is used to obtain information about a specific delivery. You need to provide the Tracking Number to retrieve information about that delivery. To use this method, send a GET request to the following endpoint

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

Request Body Parameters

Parameters Type Character Limit Required Description
TrackingNumber
string
50
Yes
Tracking number of the booked waybill

Request

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

Response Body Parameters

Parameters Type Description

Response

{ "serviceType": "Door to Door", "trackingNumber": "RDRXTEST20230322-001", "referenceNumber1": "DR00000001", "referenceNumber2": "", "referenceNumber3": "", "referenceNumber4": "", "referenceNumber5": "", "pickupDate": "2023-03-07T15:00:00", "expectedDeliveryDate": "2023-03-07T15:00:00", "paymentMethod": "COD", "codAmount": 550.0000, "declaredValue": 500.0000, "quantity": 3.0, "shipperName": "ABC Company", "shipperAddress": "Phase 1 Block 13 Pilar Village", "shipperCountry": "", "shipperAddress1": "", "shipperAddress2": "NCR", "shipperAddress3": "Las Pinas", "shipperAddress4": "B.F. INTERNATIONAL VILLAGE", "shipperPostal": "", "shipperContact": "09181234567", "shipperEmail": "abc@gmail.com", "shipperLongitude": "22.333333", "shipperLatitude": "11.222222", "consigneeName": "Juan Santos", "consigneeAddress": "Phase 1 Block 13 Pilar Village", "consigneeCountry": "", "consigneeAddress1": "", "consigneeAddress2": "NCR", "consigneeAddress3": "Las Pinas", "consigneeAddress4": "PAMPLONA 2", "consigneePostal": "", "consigneeContact": "09181234568", "consigneeEmail": "juan@gmail.com", "consigneeLongitude": "11.222221", "consigneeLatitude": "22.333331", "returnName": "ABC Company", "returnAddress": "Phase 1 Block 13 Pilar Village ", "returnCountry": "", "returnAddress1": "", "returnAddress2": "NCR", "returnAddress3": "Las Pinas", "returnAddress4": "PAMPLONA", "returnPostal": "", "returnContact": "09181234567", "returnEmail": "abc@gmail.com", "returnLongitude": "", "returnLatitude": "", "itemDescription": "", "handlingInstructions": "", "merchantName": "", "packageType": "Documents", "packageLength": 10.00, "packageWidth": 20.00, "packageHeight": 30.00, "packageWeight": 1.71, "Packagevolume": 1.00 }