Versions Compared

Key

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

...

Code Block
languagejson
{
  "orderCode": "ORD789",
  "locationCode": "LOC123",
  "boxes": [
    {
      "boxCode": "BOX001",
      "vendorCode": "VENDOR123"
    },
    {
      "boxCode": "BOX002",
      "vendorCode": "VENDOR456"
    }
  ]
}

 

Parameter Name

Data Type

Description

Mandatory

orderCode

String

Code to uniquely identify an order

Yes

locationCode

String

Location of the warehouse where the order is created

Yes

boxes

Object[]

List of boxes in the order

Yes

(min size = 1, max size = 250)

boxes.boxCode

String

Code to uniquely identify a box in an order

Yes

boxes.vendorCode

String

Code to identify the vendor

Yes

...

Response

Empty Response

json
Code Block
language
{
  "boxes": [
    {
      "boxCode": "BOX001",
      "vendorCode": "VENDOR123"
    },
    {
      "boxCode": "BOX002",
      "vendorCode": "VENDOR456"
    }
  ]
}

HttpStatus : 200