Skip to end of banner
Go to start of banner

Update Inventory

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 13 Next »

Inbound | PUT  | /usp/inventories/absolute

Summary

This API will be called by any External WMS to update the absolute inventory for the Products to be synced to Increff system.

Description

  1. This API will always expect to send the inventory available for sale in external WMS system.

  2. The inventory quantity will always be absolute.

Note: One batch will contain 500 SKUs.

Request

{
    "locationCode": "wd003",
    "products": [
        {
            "quantity": 40,
            "channelSkuCode":"ITEM302",
        }
    ]
}

 

Parameter Name

Data Type

Description

Mandatory

locationCode

String

Location from which inventory is being pushed

yes

 

products

Object[]

List of products to be updated

yes

products.channelskuCode

String

Scannable barcode on the product

yes

products.quantity

int

Ordered Quantity

yes

Response

{
  "failureProducts": [],
  "successProducts": [
    "302"
  ]
}

 

HttpStatus : 200

 

Parameter Name

Data Type

Description

failureProducts

String[]

List of channelSkuCode for which inventory update was not successful

successProducts

String[]

List of channelSkuCode for which inventory update was successful 

  • No labels