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 NameTypeDescription
reference_no_listStringReference 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 NameTypeDescription
codeIntegerResponse code: 200 successful, 400/500 failed
dataObjectresult of outbound order
reference_noStringreference number
warehouse_codeStringcode of outbound warehouse
shipping_methodStringshipping method code
statusIntegerstatus code: 10-New, 30-bounded, 40-Cancelled, 50-Exception
tracking_numberStringtracking number of the outbound order
ship_toObjectobject of recipient
company_nameStringname of the recipient's company
nameStringname of the recipient
address1Stringthe first line of recipient's address
address2Stringthe second line of recipient's address
cityStringcity name of the recipient
stateStringstate name of the recipient
zipStringzip code of the recipient
countryStringcountry of the recipient
phoneStringphone number of the recipient
emailStringemail address of the recipient
order_productsListlist of outbound products
skuStringsku number of outbound product
quantityIntegerquantity of outbound product
unit_priceFloatprice for each product
currencyStringcurrency of the product price, only support 'USD' for now