Quotation

The Quotation method is used to obtain a quotation for a delivery service. You need to provide details such as the pickup location, delivery location, package weight, and delivery date and time. To use this method, send a GET request to the following endpoint:

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

Request Body Parameters

Parameters Type Character Limit Required Description

Request

curl --location --request POST 'https://test.xpl.ph/Api/API/Waybill/WaybillQuote' --header 'Authorization: Bearer < AUTHENTICATION_TOKEN >' --header 'Content-Type: application/json' --data-raw '{ "ServiceType": "Door to Door", "pickupDate": "2021-04-16", "expectedDeliveryDate": "2021-04-19", "paymentMethod": "COD", "codAmount": "550.00", "declaredValue": "500.00", "quantity": "3", "shipperCountry": "PH", "shipperAddress": "addresses", "shipperAddress1": "Luzon", "shipperAddress2": "NCR", "shipperAddress3": "Las Pinas", "shipperAddress4": "Pamplona", "shipperPostal": "1234", "shipperLongitude": "11.222222", "shipperLatitude": "22.333333", "consigneeCountry": "PH", "consigneeAddress": "Luzon", "consigneeAddress1": "Luzon", "consigneeAddress2": "NCR", "consigneeAddress3": "Las Pinas", "consigneeAddress4": "Pamplona 2", "consigneePostal": "1234", "consigneeLongitude": "11.222221", "consigneeLatitude": "22.333331", "returnAddress": "test", "returnCountry": "PH", "returnAddress1": "Luzon", "returnAddress2": "NCR", "returnAddress3": "Las Pinas", "returnAddress4": "Pamplona 2", "returnLongitude": "11.222222", "returnLatitude": "22.333333", "merchantName": "ABC Company", "packageType": "Documents", "packageLength": "10", "packageWidth": "20", "packageHeight": "30", "packageWeight": "30", "Packagevolume": "1.71" }'

Response Body Parameters

Parameters Type Description

Response

{ "DeliveryCharge": 100.0, "VAT": 100.0, "TotalCharge": 200.0 }