Skip to end of banner
Go to start of banner

Update Channel Listings API for ERP Channels (New API) (Beta)

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 2 Next »

Inbound | PATCH | /push/skuListing

Summary

This API can be used by ERP system to update the listings for ERP Channels in Increff system.

Description

  1. This API will be used only by the ERP system to update the listings of the ERP type channel created in Increff system.

  2. This API can be used to update the ChannelSkuId and ChannelSerialCod attribute values for a particular listing.

Request

{
    "channelId": "CHANNEL_ID",
    "updateLisiting": [
        {
            "channelSkuCode": "sku",
            "toleranceDays": 1,
            "modifiedChannelSkuCode": "sku1",
            "modifiedChannelSerialCode": "sku1"
        }
    ]
}

 

Parameter

Data Type

Description

Mandatory

channelId

String

Channel ID

Yes

updateLisiting

List<skuListing>

List of objects of listings

Yes

updateLisiting.channelSkuId

String

Existing channel SKU id

Yes

updateLisiting.toleranceDays

Integer

Tolerance day of the SKU

No

updateLisiting.modifiedChannelSkuId

String

The updated channel SKU id

No

updateLisiting.modifiedChannelSerialCode

String

The updated channel serial code

No

Response

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

Http Status: 200

 

  • No labels