Info- Web service URL: BASE_URL/api/Track/by-awb/with-return
|
TABLE OF CONTENTS
Name | Type | Required | Description |
courier | int | Yes | Courier Id - See Couriers table |
awbList | string [] | Yes | Comma separated Awbs - limit 200 |
Name | Type | Description |
orderId | int | Innoship Order Id |
courier | int | See Couriers table |
shipmentAwb | string | Courier AWB number |
carrierMeasuredWeight | double | reweight info (if exists) |
history | History [] | Event history for main AWB |
ReturnAwb | string | Return AWB number if exists |
ReturnAwbHistory | History [] | Event history for return AWB |
cashOnDeliveryHistory | History [] | Event history for cod AWB |
History [] :
Name | Type | Description |
clientStatusId | int | See Statuses Table |
clientStatusDescription | string | Text description of status |
eventDate | Date | Date of event from courier |
isFinalStatus | boolean | True if this is a final status |
1.1 Track service response example
200 - Response
[
{
"returnAwb": null,
"returnAwbHistory": null,
"orderId": 3960893,
"courier": 1,
"shipmentAwb": "942116818",
"carrierMeasuredWeight": null,
"history": [
{
"clientStatusId": 1,
"clientStatusDescription": "New",
"eventDate": "2021-07-02T11:50:38.196413",
"isFinalStatus": false
},
{
"clientStatusId": 2,
"clientStatusDescription": "Picked-Up",
"eventDate": "2021-07-02T13:04:06",
"isFinalStatus": false
},
{
"clientStatusId": 10,
"clientStatusDescription": "In Courier WH",
"eventDate": "2021-07-02T15:43:07",
"isFinalStatus": false
},
{
"clientStatusId": 20,
"clientStatusDescription": "In Transit",
"eventDate": "2021-07-02T19:41:50",
"isFinalStatus": false
},
{
"clientStatusId": 10,
"clientStatusDescription": "In Courier WH",
"eventDate": "2021-07-03T00:25:41",
"isFinalStatus": false
},
{
"clientStatusId": 20,
"clientStatusDescription": "In Transit",
"eventDate": "2021-07-03T00:26:01",
"isFinalStatus": false
},
{
"clientStatusId": 10,
"clientStatusDescription": "In Courier WH",
"eventDate": "2021-07-03T06:43:15",
"isFinalStatus": false
},
{
"clientStatusId": 30,
"clientStatusDescription": "Out for Delivery",
"eventDate": "2021-07-05T05:21:11",
"isFinalStatus": false
},
{
"clientStatusId": 36,
"clientStatusDescription": "Not Home",
"eventDate": "2021-07-05T10:38:57",
"isFinalStatus": false
},
{
"clientStatusId": 100,
"clientStatusDescription": "Delivered",
"eventDate": "2021-07-05T10:44:25",
"isFinalStatus": true
}
],
"cashOnDeliveryHistory": [
{
"clientStatusId": 1,
"clientStatusDescription": "New",
"eventDate": "2021-07-02T11:50:38.196414",
"isFinalStatus": false
},
{
"clientStatusId": 2,
"clientStatusDescription": "Collected",
"eventDate": "2021-07-05T00:00:00",
"isFinalStatus": false
}
]
}
]
400 - Bad request
"errors": [
{
"message": "Invalid request. Incorrect AWB list provided",
"details": null
}
],
"correlationId": null
}