Skip to end of banner
Go to start of banner

Create Marketplace SKU Mappings API (By ERP)

Skip to end of metadata
Go to start of metadata

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

Compare with Current View Page History

« Previous Version 2 Next »

Inbound | POST | /master/sku-listings

Summary

This API is used to create barcode to Channel (marketplace) SKU mappings by passing the channel name, provided the SKU master are already created for the channel.

Description

This API will create listings in Omni (SKU barcode to ChannelSku) mappings. This is relevant for any ERP system which wants to push Mapping for any channel.

A Single payload can only send up to 5000 skuListings

Request

{
  "channelName": "ERPChannelAlias"
  "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 [ ]

Represents code of parent order of the order

No

channelName

String

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

Yes

skuListings.channelSkuCode

String

SKU code of order item

Yes

skuListings.channelSerialNo

String

Unique code generated at channel side for that order item.

Yes

skuListings.barcode

String

Scannable code present on physical product that identifies an SKU uniquely

Yes

skuListings.toleranceDays

Integer

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

No

Response

Empty Body

 

HttpStatus : 200

  • No labels