Create Outbound Order

This API describes how to create an outbound order.


Method: POST

Request Body

json
{
  "reference_no": "abc123",
  "warehouse_code": "LAX01W",
  "shipping_method": "STANDARD",
  "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"
    }
  ]
}

Request Body Explanation

Attribute NameTypeDescription
reference_noStringReference Number, must be unique and length>=4
warehouse_codeStringcode of outbound warehouse
shipping_methodStringshipping method code
ship_toObjectobject of recipient
company_nameStringname of the recipient's company
nameStringname of the recipient
address_1Stringthe first line of recipient's address
address_2Stringthe 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

Response Body

json
{
  "code": 200,
  "message": "success"
}

Response Body Explanation

Attribute NameTypeDescription
codeIntegerResponse code: 200 successful, 400/500 failed
messageStringmessage of the result of outbound order creation