Versions Compared

Key

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

...

Code Block
languagejson
{
    "channelIdchannelName": "MYNTRAV4",
    "updateLisitingskuListings": [
        {
            "channelSkuCode": "sku",
            "toleranceDays": 1,
            "modifiedChannelSkuCode": "sku1",
            "modifiedChannelSerialCode": "sku1"
        }
    ]
}

 

Parameter

Data Type

Description

Mandatory

channelId

String

The channel name

Yes

updateLisiting

List<skuListing>

List of objects of listings

Yes

updateLisiting.channelSkuCode

String

The existing channel SKU code

Yes

updateLisiting.toleranceDays

Integer

The updated tolerance day of perishable SKUs. This should be sent only in case the SKU is perishable

No

updateLisiting.modifiedChannelSkuCode

String

The updated channel SKU code

No

updateLisiting.modifiedChannelSerialCode

String

The updated channel serial code

No

Response

Code Block
languagejson
{
    "failureList": [],
    "successList": [
        {
            "channelSkuCode": "sku",
            "toleranceDays": 1,
            "modifiedChannelSkuCode": "sku1",
            "modifiedChannelSerialCode": "sku1"
        }
    ]
}

...