3.4 Search Shipments
Description
This section will show you how to search the shipment you have created.
Sandbox/Testing URL: https://sandbox-apiv2.unixus.com.my/shipment/v2/Search
Production/Live 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": [
"458040010570553"
]
}
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": "LWE (AU) LTD.",
"Address1": "TEST ADDRESS 1",
"Address2": "TEST ADDRESS 2",
"Postcode": "70000",
"City": "JOHOR BAHRU",
"State": "SELANGOR",
"CountryCode": "MY",
"Phone1": "03-8888888"
},
"Items": [
{
"Description": "ITEM1",
"Quantity": 10,
"UnitValue": 20,
"HSCode": "30",
"SKU": "40",
"Url": "50"
}
],
"Packages": [
{
"PackageReference": "PKG1",
"Length": 10,
"Width": 20,
"Height": 30,
"ActualWeight": 30,
"ChildHawb": "458040010570553PC001"
}
],
"ShipmentsReference": [
{
"ReferenceNo": "458040010570553"
}
],
"HawbNo": "458040010570553",
"TOSMode": "MY-E-EXPRESS",
"CurrencyCode": "MYR",
"ShipmentValue": 20,
"TotalWeight": 30,
"TotalVolumetricWeight": 1,
"PackageType": "SPX",
"WeightType": "KG",
"ShipmentDate": "2019-01-10T00:00:00+08:00",
"Status": "ACTIVE"
}
}
]
}