Listing Creation For EFS
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
.
channelSkuCode
is the product identifier used at Marketplace end.
Request
{
"skuListings": [
{
"channelSkuCode": "ChannelSku1",
"channelSerialNo": "ChannelSerialNo1",
"barcode": "barcode1",
"toleranceDays": 2
},
{
"channelSkuCode": "ChannelSku2",
"channelSerialNo": "ChannelSerialNo2",
"barcode": "barcode2",
"toleranceDays": null
}
]
}
Â
Parameter Name | Data Type | Description | Mandatory |
| Object [ ] | This contains list of SKU listing which needs to be mapped in one channel. | Yes |
| String | SKU identifier of channel. | yes |
| String | Unique code generated at channel side which can additionally be used to identify the listing. | yes |
| String | Scannable code present on physical product that identifies an SKU uniquely. | yes |
| Integer | Days before getting expired upto which item can be used to fulfill the orders. | no |
Response
Empty Body
Â
HttpStatus : 200
Â