4.3 Search Pickup
Description
This section will show you how to search your pickup.
Sandbox/Testing URL: https://sandbox-apiv2.unixus.com.my/Shipment/Pickup/v1/Search
Production/Live URL: https://apiv2.unixus.com.my/Shipment/Pickup/v1/Search
Method : POST
Content-Type : application/json
Accept-Language : en
Authorization : Bearer {access_token}
Request
Data Structure
Search Pickup
Field | Type | Mandatory | Remarks |
---|---|---|---|
PickupNo | String[] | Yes | Array of pickup number. |
Sample:
{
"PickupNo": [
"PKR180625182238"
]
}
Response
Sample
{
"Summary": {
"Total": 1,
"Success": 1,
"Failed": 0
},
"Pickup": [
{
"IsSuccess": true,
"PickupDetails": {
"Shipper": {
"ContactPerson": "Nicholas",
"Address1": "BLOCK A, GROUND FLOOR, GL06",
"Address2": "Kelana Square, No.17, Jalan SS7/26",
"Postcode": "47301",
"City": "Petaling Jaya",
"State": "Selangor",
"CountryCode": "MY",
"Phone1": "+60378038830",
"Phone2": "111"
},
"PickupNo": "PKR180625182238",
"Quantity": 5,
"Weight": 10.0,
"Vehicle": "",
"PickupResponseStation": "KUL",
"PickupDateTime": "2018-06-25T00:00:00+08:00"
}
}
]
}