Get Item Barcode Details API (For Inward Orders)
Inbound | POST | /orders/inward/search-items
Summary
This API can be used to search the Item level information for products which are inwarded in WMS system for a Purchase/Inward Order.
Description
The API will accept the Channel Order Number along with Channel SKUs or Box Codes as input and return the Item Codes for each SKU/Box Code used for inwarding of the products in WMS system.
Request
{
"channelOrderCode": "ABC12345",
"channelName" : "Test-Channel",
"gateEntryId" : 12345,
"locationCode": "loc-1",
"channelSkuCodes": [
"CSKU1",
"CSKU2",
"CSKU3"
],
"boxCodes": [
"Box1",
"Box2",
"Box3"
]
}
Â
Parameter Name | Data Type | Description | Mandatory |
| String | Order Identifier for Inward order used while creating Purchase order in WMS | Yes |
| String | ERP channel name | No |
| Integer | WMS Gate entry against which inward has been done for the Purchase order items | No |
| String | Channel location code for the order | Yes |
| String | SKU identifier for products inwarded Max Limit: 500 SKUs in one request | No |
| String | Identifier for boxes used to inward the products of purchase order Max Limit: 50 BoxCodes in one request | No |
Response
{
"itemsData": [
{
"gateEntryId": 19,
"itemCode": "test_027edfa48ace",
"channelSkuCode": "test_e965190ad402",
"boxCode": "test_ecd62a09059f"
}
]
}
Â
Â
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 |
| Integer | WMS Gate entry against which inward has been done for the Purchase order items |
HTTP status
200
Â