...
A single request can contain maximum of 5000 SKUs
Request
Code Block | ||
---|---|---|
| ||
{ "channelName": "MarketplaceChannelAlias", "skuListings": [ { "channelSkuCode": "ChannelSku1", "channelSerialNo": "ChannelSerialNo1", "barcode": "barcode1", "toleranceDays": 2 }, { "channelSkuCode": "ChannelSku2", "channelSerialNo": "ChannelSerialNo2", "barcode": "barcode2", "toleranceDays": null } ] } |
Parameter Name | Data Type | Description | Mandatory |
| Object [ ] | Represents code of parent order of the order | No |
| String | Marketplace Channel Alias configured in CIMS for which the Listings are pushed | Yes |
| String | SKU code of order item | Yes |
| String | Unique code generated at channel side for that order item. | 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 orders created by ERP | No |
Response
Code Block | ||
---|---|---|
| ||
{ "successChannelSkus": [ "AUTO_SKU_1ChannelSku1" ], "failureSkuListingData": [ { "channelSku": "AUTO_SKU_2ChannelSku2", "errorMessage": "Invalid Tolerance days" } ] } |
...