Get Outbound Order Detail
This API describes how to get outbound order details.
Method: POST
Request Body
json
{
"reference_no_list": ["abc123", "xyz456"]
}
Request Body Explanation
Attribute Name | Type | Description |
---|---|---|
reference_no_list | String | Reference number list of order need to be get details |
Response Body
json
{
"code": 200,
"data": [
{
"reference_no": "abc123",
"warehouse_code": "LAX01W",
"status": 30,
"tracking_number": "123456789",
"ship_to": {
"name": "shipper name",
"company_name": "",
"address_1": "123 First St.",
"address_2": "",
"city": "Anytown",
"state": "CA",
"country": "US",
"zip": "90210",
"phone": "1234567890",
"email": "help@email.com"
},
"order_products": [
{
"sku": "sku-1",
"quantity": 2,
"unit_price": 12.95,
"currency": "USD"
},
{
"sku": "sku-2",
"quantity": 1,
"unit_price": 9.95,
"currency": "USD"
}
]
}
]
}
Response Body Explanation
Attribute Name | Type | Description |
---|---|---|
code | Integer | Response code: 200 successful, 400/500 failed |
data | Object | result of outbound order |
reference_no | String | reference number |
warehouse_code | String | code of outbound warehouse |
shipping_method | String | shipping method code |
status | Integer | status code: 10-New, 30-bounded, 40-Cancelled, 50-Exception |
tracking_number | String | tracking number of the outbound order |
ship_to | Object | object of recipient |
company_name | String | name of the recipient's company |
name | String | name of the recipient |
address1 | String | the first line of recipient's address |
address2 | String | the second line of recipient's address |
city | String | city name of the recipient |
state | String | state name of the recipient |
zip | String | zip code of the recipient |
country | String | country of the recipient |
phone | String | phone number of the recipient |
String | email address of the recipient | |
order_products | List | list of outbound products |
sku | String | sku number of outbound product |
quantity | Integer | quantity of outbound product |
unit_price | Float | price for each product |
currency | String | currency of the product price, only support 'USD' for now |