Outbound | PUT | {Client’s URL}
Summary
This API will push the absolute salable inventory count to the channel.
Description
This API will always send the inventory available for sale.
...
Frequency of this job is configurable in Omni .
Request
Code Block | ||
---|---|---|
| ||
{ "locationCode": "wd003", "inventories": [ { "quantity": 40, "channelSkuCode": "302" } ] } |
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 |
Response
Code Block | ||
---|---|---|
| ||
{ "failureList": [], "successList": [ "302" ] } |
...