...
Code Block | ||
---|---|---|
| ||
{ "locationCode": "wd02", "handoverItems": [ { "orderCode": "order123", "shipmentCode": "ship123", "gatePassCode": "gate124H23", "packBoxDetailsList": [ { "boxId": 1, "awbNumber": "AWB001" }, { "boxId": 2, "awbNumber": "AWB002" } ] }, { "orderCode": "order124", "shipmentCode": "ship124", "gatePassCode": "gate124H24", "packBoxDetailsList": [ { "boxId": 3, "awbNumber": "AWB0011" }, { "boxId": 4, "awbNumber": "AWB0022" } ] } ] } |
Parameter Name | Data Type | Description | Mandatory |
| String | Location code of the warehouse from where the order will be shipped | yes |
| Object[] | List of handover items | yes |
| String | Unique code used by the channel to identify order | yes |
| String | Unique code used by the channel to identify shipment | yes |
| String | gatePassCode used while creating the gatePass for this shipment | no |
| Object[] | Box level details | no |
| Long | Unique id to identify a particular shipment | no |
| String | AWB number of a particular box | no |
Response
Code Block | language | json
---|
{ "hasError": false, "errorMessage":"message" } |
...