Outbound | POST | {Client’s URL}
Summary
This API will be called by eWMS to update the inventory.
Description
This API will always send the inventory available for sale.
The inventory will always be absolute.
Note : One batch will contain 500 SKUs.
Request
{ "locationCode": "wd003", "products": [ { "quantity": 40, "channelSkuId": "302", } ] }
Parameter Name | Data Type | Description | Mandatory |
| String | Location from which inventory is being pushed | yes
|
| Object[] | List of products to be updated | yes |
| String | Scannable barcode on the product | yes |
| int | Ordered Quantity | yes |
Response
{ "failureProducts": [], "successProducts": [ "302" ] }
HttpStatus : 200
Parameter Name | Data Type | Description |
| String[] | List of clientSkuIds for which inventory update was not successful |
| String[] | List of clientSkuIds for which inventory update was successful |