...
Code Block | ||
---|---|---|
| ||
{ "orderCode": "ORD789", "locationCode": "LOC123", "boxes": [ { "boxCode": "BOX001", "vendorCode": "VENDOR123" }, { "boxCode": "BOX002", "vendorCode": "VENDOR456" } ] } |
Parameter Name | Data Type | Description | Mandatory |
| String | Code to uniquely identify an order | Yes |
| String | Location of the warehouse where the order is created | Yes |
| Object[] | List of boxes in the order | Yes (min size = 1, max size = 250) |
| String | Code to uniquely identify a box in an order | Yes |
| String | Code to identify the vendor | Yes |
...
Response
Empty Response
Code Block | language | json
---|
{ "boxes": [ { "boxCode": "BOX001", "vendorCode": "VENDOR123" }, { "boxCode": "BOX002", "vendorCode": "VENDOR456" } ] } |