Versions Compared

Key

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

...

Code Block
languagejson
{
  "locationCode": "Loc-1" , 
  "shipmentId": "123",
   "channelSkuCodes": [ 
        "CSKU-1",
        "CSKU-2",
        "CSKU-3"
    ],
    "boxCodes": [ 
        "Box-1test_789098a4369c",
        "Box-2",
        "Box-3"test_789098a4369D"
    ]
}

Parameter Name

Data Type

Description

Mandatory

locationCode

String

Location Identifier for which the shipment of an outward order is being searched

Yes

shipmentId

String

OMS Shipment identifier for the Sale order.

Note:

  • B2B order can have multiple shipments.

  • You can pass one Shipment ID at a time for any order since the list of items can be large in number.

Yes

channelSkuCodes

String

SKU identifier for products inwardedoutwarded

Note

Max Limit: 500 SKUs in one request

No

boxCodes

String

Identifier for boxes used to inward the products of purchase order

Note

Max Limit: 50 BoxCodes in one request

No

...

Code Block
languagejson
  "itemsData": [
    {
      "shipmentId": 76,
      "itemCode": "test_74cdd4d30453",
      "channelSkuCode": "test_ec5a7f120c33",
      "boxCode": "test_789098a4369c"
    },
    {
      "shipmentId": 76,
      "itemCode": "test_74cdd4d30454",
      "channelSkuCode": "test_ec5a7f120c33",
      "boxCode": "test_789098a4369c"
    },
    {
      "shipmentId": 76,
      "itemCode": "test_74cdd4d30455",
      "channelSkuCode": "test_ec5a7f120c33",
      "boxCode": "test_789098a4369d"
    },
    {
      "shipmentId": 76,
      "itemCode": "test_74cdd4d30456",
      "channelSkuCode": "test_ec5a7f120c33",
      "boxCode": "test_789098a4369d"
    }
  ]
}

 

 

Parameter Name

Data Type

Description

itemsData

Object

List containing the information of shipmentId, itemCode, channelSkuCode , boxCode for the B2B shipments.

itemsData.itemCode

String

Item Code value for the SKU/Box passed in the API request

successList.channelSkuCode

String

SKU identifier for products for which itemCode is printed and inwarded

successList.boxCode

String

Identifier for boxes used to Outward the items of Sale order

successlist.shipmentId

Long

Shipment ID for which the item information is provided

...