Versions Compared

Key

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

Inbound | POST | /inventories/search-sku

Summary

API to search for all locations where a product is available for customer to place order or pickup from store.

Description

  • The API will accept the list of SKUs as input and return the total inventory available in each fulfillment location (warehouse or store) for the SKU List.

  • This API can be used to improve the pre-order delivery experience at the front-end system for the end customer.

  • This API can also be used to show the pickup location of store to end customer in case he chooses the option of buy online and pickup from store (BOPIS) on front end website at time of placing the order

Request

Code Block
languagejson
{
  "channelSkuCodes": [
    "100565431",
    "100565433",
    "100565435",
    "100565437"
  ]
}

...

Parameter Name

Data Type

Description

Mandatory

channelSkuCodes

String

Represents channel SKU codes of the product which are listed in Increff systems under channel listings

Yes

Response

Code Block
languagejson
{
  "sucessList": [
    {
      "channelSkuCode": "100565431",
      "channelSerialNo": "100565431",
      "totalQuantity": 280,
      "inventories": [
        {
          "quantity": 140,
          "locationCode": "Store-1",
          "locationType": "Store"
        },
        {
          "quantity": 140,
          "locationCode": "Store-2",
          "locationType": "Store"
        }
      ]
    },
    {
      "channelSkuCode": "100565433",
      "channelSerialNo": "100565433",
      "totalQuantity": 240,
      "inventories": [
        {
          "quantity": 240,
          "locationCode": "wd003",
          "locationType": "Warehouse"
        }
      ]
    }
  ],
  "failureList": [
    "100565435",
    "100565437"
  ]
}

...