Get Inbound Order Detail
This API describes how to get inbound order details.
Method: POST
Request Body
json
{
"reference_no_list": ["abc123", "xyz456"]
}
Request Body Explanation
Attribute Name | Type | Description |
---|---|---|
reference_no_list | List | Reference number list of order need to be get details |
Response Body
json
{
"code": 200,
"data": [
{
"reference_no": "abc123",
"warehouse_code": "LAX01W",
"status": 30,
"expected_date": "2023-12-25T23:00:00",
"package": {
"width": 6.21,
"length": 5.93,
"height": 8.68,
"weight": 7.23,
"products": [
{
"quantity": 10,
"sku": "sku-1"
},
{
"quantity": 20,
"sku": "sku-2"
}
]
}
]
}
Response Body Explanation
Attribute Name | Type | Description |
---|---|---|
code | Integer | Response code: 200 successful, 400/500 failed |
data | List | object of result |
reference_no | String | Reference Number of the inbound order |
warehouse_code | String | code of inbound warehouse |
status | String | status code: 10-New, 30-Inbounded, 40-Cancelled, 50-Error |
expected_date | String | expected inbound date |
package | Object | package list |
width | Float | width of the package, unit with inch |
length | Float | length of the package, unit with inch |
height | Float | height of the package, unit with inch |
weight | Float | weight of the package, unit with pound |
products | List | product list |
quantity | Integer | quantity of the product |
sku | String | sku number |