Skip to end of banner
Go to start of banner

Available To Promise Inventory API

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 6 Next »

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.

The inventory will always be absolute.

Note : One batch will contain 200 skus.

Frequency of this job is configurable in Omni .

Request

{
  "locationCode": "wd003",
  "inventories": [
    {
      "quantity": 40,
      "channelSkuCode": "302"
    }
  ]
}

Parameter Name

Data Type

Description

Mandatory

locationCode

String

Identifier for a warehouse in channel

Yes

inventories

Object[]

List of inventories to be updated

quantity

Integer

Absolute quantity available for sale in Assure

Yes

channelSkuCode

String

Code used by channel to identify an SKU

Yes

Response

{
  "failureList": [],
  "successList": [
    "302"
  ]
}

HttpStatus : 200

Parameter Name

Data Type

Description

failureList

String[]

List of channelSkuCodes for which inventory update was not successful

successList

String[]

List of channelSkuCodes for which inventory update was successful 

  • No labels