Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This API will be called by any External WMS to update the absolute inventory available in WMS for the Products to be synced to Increff systemlisted in Increff OMS.

Description

  1. This API will always expect to send the inventory available for sale in external WMS system to Increff OMS system so that the inventory can be exposed to External integrated channels like Marketplaces, Webshops ERP systems etc.

  2. The inventory quantity will always be absolute in nature.

Info

Note: One batch will can contain maximum of 500 SKUs.

Request

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

...

Parameter Name

Data Type

Description

Mandatory

locationCode

String

Location from which inventory is being pushed

yesYes

 

products

Object[]

List of products to be updated

yesYes

products.channelskuCode

String

Scannable barcode on the product

yesYes

products.quantity

int

Ordered Quantity

yesAboluste Quantity of inventory available for the product in eWMS

Yes

Response

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

...