4.3 搜索提货请求
描述
本章节讲像您展示如何搜索您的提货请求。
开发/测试环境 : https://sandbox-apiv2.unixus.com.my/shipment/Pickup/v1/Search
生产/正式环境 : https://apiv2.unixus.com.my/shipment/Pickup/v1/Search
Method : POST
Content-Type : application/json
Accept-Language: en
Authorization : Bearer {access_token}
请求
数据结构
搜索提货
Field | Type | Mandatory | Remarks |
---|---|---|---|
PickupNo | String[] | 是 | Array of pickup number. |
样品:
{
"PickupNo": [
"PKR180625182238"
]
}
响应
样品
{
"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"
}
}
]
}