Update Channel Listings API for ERP Channels (New API) (Beta)
Inbound | PATCH | /push/skuListing
Summary
This API will be used only by ERP channel to update the listings of the ERP(itself) or other marketplaces (mapped against the same client entity).
Description
This API will be used only by the ERP system to update the listings of the ERP channel or other marketplace channels created in the Increff system(mapped against the same client entity).
This API can be used to update the
toleranceDays
,ChannelSkuCode
andChannelSerialCode
attribute values for a particular listing.
Request
{
"channelId": "MYNTRAV4",
"updateLisiting": [
{
"channelSkuCode": "sku",
"toleranceDays": 1,
"modifiedChannelSkuCode": "sku1",
"modifiedChannelSerialCode": "sku1"
}
]
}
Â
Parameter | Data Type | Description | Mandatory |
---|---|---|---|
| String | The channel name | Yes |
| List<skuListing> | List of objects of listings | Yes |
| String | The existing channel SKU code | Yes |
| Integer | The updated tolerance day of perishable SKUs. This should be sent only in case the SKU is perishable | No |
| String | The updated channel SKU code | No |
| String | The updated channel serial code | No |
Response
{
"failureList": [],
"successList": [
{
"channelSkuCode": "sku",
"toleranceDays": 1,
"modifiedChannelSkuCode": "sku1",
"modifiedChannelSerialCode": "sku1"
}
]
}