3.4 Search Shipments
Description
This section will show you how to search the shipment you have created.
Url : https://apiv2.unixus.com.my/shipment/v2/Search
Method : POST
Content-Type: application/json
Accept-Language: en
Authorization: Bearer {access_token}
Request
Data Structure
SearchShipments
Field | Type | Mandatory | Remarks |
---|---|---|---|
HawbNo | String[] | Yes | List of Hawb No. |
Sample:
{
"HawbNo": [
"458040010403780"
]
}
Response
Sample
{
"Summary": {
"Total": 1,
"Success": 1,
"Failed": 0
},
"ShipmentsResponse": [
{
"IsSuccess": true,
"ShipmentDetails": {
"Shipper": {
"Name": "DEMO ACCOUNT",
"ContactPerson": "DEMO ACCOUNT",
"Address1": "BLOCK C, 3A01 & 3A02,",
"Address2": "LEVEL 3A, KELANA SQUARE,",
"Address3": "NO.17, JALAN SS7/26",
"Postcode": "47301",
"City": "PETALING JAYA",
"State": "SELANGOR",
"CountryCode": "MY",
"Phone1": "+60378038830"
},
"Consignee": {
"ContactPerson": "VINCENT YAP",
"Address1": "123",
"Address2": "JLN TUN",
"Postcode": "52000",
"City": "TMN TUN",
"State": "KL",
"CountryCode": "MY",
"Phone1": "0121234567",
"Email": "[email protected]"
},
"Items": [
{
"Description": "TEST",
"Quantity": 1,
"UnitValue": 11.0
}
],
"Packages": [
{
"PackageReference": "PACKAGE00",
"Length": 1.0,
"Width": 1.0,
"Height": 1.0,
"ActualWeight": 2.0
}
],
"ShipmentsReference": [
{
"ReferenceNo": "EM908741008MY"
}
],
"HawbNo": "458040010403780",
"TOSMode": "MY-E-POSLAJU",
"CurrencyCode": "MYR",
"ShipmentValue": 11.0,
"TotalWeight": 2.0,
"PackageType": "SPX",
"WeightType": "KG",
"ShipmentDate": "2018-05-14T16:55:51+08:00",
"Status": "TRANSFERRED"
}
}
]
}