Versions Compared

Key

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

...

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

skuListings

Object

List of the SKUs whose listings is to be created

[ ]

Represents code of parent order of the order

No

channelName

String

Marketplace Channel Alias configured in CIMS for which the Listings are pushed

Yes

skuListings.channelSkuCode

String

Unique identifier of SKU on channel’s end

SKU code of order item

Yes

skuListings.channelSerialNo

String

It’s the serial number of an SKU on channel

Unique code generated at channel side for that order item.

Yes

skuListings.barcode

String

unique identifier of SKU on client’s end

channelName

String

Channel whose listing is to be created

Yes

Scannable code present on physical product that identifies an SKU uniquely

Yes

skuListings.toleranceDays

Integer

Number of days the SKU is tolerant, it is used to set minExpiry of the SKU

No

Days before getting expired upto which item can be used to fulfill orders created by ERP

No


Response

Code Block
{
  "successChannelSkus": [
    "ChannelSku1"
  ],
  "failureSkuListingCimsData": [
    {
      "channelSku": "ChannelSku2",
      "errorMessage": "Invalid Tolerance days"
    }
  ]
}

...

Parameter Name

Data Type

Description

successChannelSkus

Object

List of the skus whose listings were successfully createdSKUs for which listing creation is successful

failureSkuListingCimsData

Object

List of the skus whose SKUs for which listing creation is failed

failureSkuListingCimsData.channelSku

String

The sku whose SKUs for which listing creation failed

failureSkuListingCimsData.errorMessage

String

Reason for listing creation failure

...