...
This API can be used to search the Item level information for all the Items which are outwarded/shipped/COMPLETED from WMS system against a B2B Sale orders.
...
Code Block | ||
---|---|---|
| ||
{ "locationCode": "Loc-1" , "shipmentId": "123", "channelSkuCodes": [ "CSKU-1", "CSKU-2", "CSKU-3" ], "boxCodes": [ "Box-1test_789098a4369c", "Box-2", "Box-3"test_789098a4369D" ] } |
Parameter Name | Data Type | Description | Mandatory | ||
| String | Location Identifier for which the shipment of an outward order is being searched | Yes | ||
| String | OMS Shipment identifier for the Sale order. Note:
| Yes | ||
| String | SKU identifier for products inwardedoutwarded. Supports only for COMPLETED orders.
| No | ||
| String | Identifier for boxes used to inward the products of purchase order
| No |
...
Code Block | ||
---|---|---|
| ||
"itemsData": [ { "shipmentId": 76, "itemCode": "test_74cdd4d30453", "channelSkuCode": "test_ec5a7f120c33", "boxCode": "test_789098a4369c" }, { "shipmentId": 76, "itemCode": "test_74cdd4d30454", "channelSkuCode": "test_ec5a7f120c33", "boxCode": "test_789098a4369c" }, { "shipmentId": 76, "itemCode": "test_74cdd4d30455", "channelSkuCode": "test_ec5a7f120c33", "boxCode": "test_789098a4369d" }, { "shipmentId": 76, "itemCode": "test_74cdd4d30456", "channelSkuCode": "test_ec5a7f120c33", "boxCode": "test_789098a4369d" } ] } |
Parameter Name | Data Type | Description |
| Object | List containing the information of |
| String | Item Code value for the SKU/Box passed in the API request |
| String | SKU identifier for products for which itemCode is printed and inwarded |
| String | Identifier for boxes used to Outward the items of Sale order |
| Long | Shipment ID for which the item information is provided |
...