Inbound | POST | /usp/listing/create

Summary

This API is used to create mappings of Product Barcode to Channel SKU provided the SKU Master is already created for the product.

User can also use Increff OMS system User interface to upload the channel listings.

Description

This API will create mapping ofbarcode (Client SKU ID) to channelSkuCode.

<aside> ℹ️ channelSkuCode is the product identifier used at Marketplace end.

</aside>

Request

{
  "skuListings": [
    {
      "channelSkuCode": "ChannelSku1",
      "channelSerialNo": "ChannelSerialNo1",
      "barcode": "barcode1",
      "toleranceDays": 2
    },
    {
      "channelSkuCode": "ChannelSku2",
      "channelSerialNo": "ChannelSerialNo2",
      "barcode": "barcode2",
      "toleranceDays": null
    }
  ]
}
Parameter Name Data Type Description Mandatory
skuListings Object [ ] This contains list of SKU listing which needs to be mapped in one channel. Yes
skuListings.channelSkuCode String SKU identifier of channel. yes
skuListings.channelSerialNo String Unique code generated at channel side which can additionally be used to identify the listing. yes
skuListings.barcode String Scannable code present on physical product that identifies an SKU uniquely. yes
skuListings.toleranceDays Integer Days before getting expired upto which item can be used to fulfill the orders. no

Response

Empty Body

HttpStatus : 200