...
This API will push the absolute salable saleable inventory count to the channel.
...
Note : One batch will contain 200 skusSKUs.
Frequency of this job is configurable in Omni .
Request
Code Block | ||
---|---|---|
| ||
{ "locationCode": "wd003", "inventories": [ { "quantity": 40, "channelSkuCode": "302", "minExpiry": "2020-10-16", "channelSerialNo": "serial1" } ] } |
Parameter Name | Data Type | Description | Mandatory |
| String | Identifier for a warehouse in channel | Yes |
| Object[] | List of inventories to be updated | |
| Integer | Absolute quantity available for sale in Assure | Yes |
| String | Code used by channel to identify an SKU | Yes |
| String | Additional code by channel to identify an SKU | No |
| String | Minimum expiry date of the item guaranteed by Assure | No |
Response
Code Block | ||
---|---|---|
| ||
{ "failureList": [], "successList": [ "302" ] } |
...