{}When an Order is created.
{}"connection_id"
Show child attributes
The unique ID of the order.
"order_id"
The ID of the merchant/tenant/customer that owns the order. Can be passed into the Warehouse Customer endpoint for more details.
"warehouse_customer_id"
The date the order was created.
"2022-01-01T00:00:00Z"
The date the order was last updated.
"2022-01-02T05:05:05Z"
An external unique identifier for the order, such as a Shopify order id. Defaults to id if client has not defined one.
"order_reference_id"
A user-friendly identifier for their order. Defaults to reference_id if not provided.
"order_number"
The status of the order. See the order information for more details.
open, confirmed, processing, picked, packed, partially_fulfilled, fulfilled, exception, cancelled, backordered, other "open"
The raw status (if available) returned directly from the WMS.
"raw_status"
Deprecated in favor of channel_object.
"channel_id"
The type of order, such as d2c, b2b, dropship, or transfer.
d2c, b2b, dropship, transfer "d2c"
For retail/EDI orders, the trading partner who placed the order (e.g. Target, Walmart).
"Target"
Deprecated.
The type of shipping method requested by the customer.
"Standard"
The ID of the actual shipping method used to ship the order. Can be passed into the Shipping Method endpoint for more details.. May vary from the shipping methods returned at the package level.
"fedex_ground"
The name of the shipping method used to ship the order.
"FedEx Ground"
The ID of the carrier used to ship the order to the customer. May vary from the carriers returned at the package level.
"fedex"
The name of the carrier used to ship the order to the customer. If carrier_id is also provided, that will take precedence. May vary from the carriers returned at the package level.
"FedEx"
The Standard Carrier Alpha Code for the carrier used to ship the order.
True if the order was shipped using a third party freight account.
false
The third party freight account number used to ship the order.
"123456"
The first party freight account number used to ship the order.
"123456"
The currency used for this order. If not provided explicitly, defaults to USD.
"USD"
The total price a customer paid for the order.
13.49
The total tax on the order.
1.5
The total amount discounted from the order.
2.5
The total shipping cost for the order incurred by the customer.
3.5
Show child attributes
"John Doe"
"Company"
"123 Main St"
"Apt 2"
"Floor 3"
"New York"
"NY"
"10001"
"United States"
"123-456-7890"
List of the products included in the order.
Show child attributes
"sku"
1
The price of the product in the currency specified by invoice_currency_code.
10.99
Whether the product has been picked in the warehouse.
false
The amount discounted from the product for this order.
1.5
[
{
"product_id": "product_id",
"sku": "sku",
"quantity": 1,
"unit_price": 10.99,
"is_picked": false,
"discount_amount": 1.5
}
]A list of tags associated with the order. Tags that are represented as key-value pairs in the WMS will be represented as a single string formatted as key:value.
A tag associated with the order.
["tag_0"]The date the order must be shipped by.
"2021-01-01T12:00:00Z"
True if the order requires Saturday delivery.
false
True if the order requires a signature upon delivery.
false
The party responsible for paying international duties.
sender, recipient, third_party "sender"
List of the shipments sent out to the customer.
Show child attributes
The ID of the shipment.
The raw status (if available) of the shipment returned directly from the WMS.
"raw_status"
The status of the shipment.
open, shipped, cancelled, other "shipped"
The date the shipment was sent.
"2022-05-06T01:02:03Z"
Deprecated.
List of the inventory items listed in the shipment.
Show child attributes
0
Show child attributes
"John Doe"
"Company"
"123 Main St"
"Apt 2"
"Floor 3"
"New York"
"NY"
"10001"
"United States"
"123-456-7890"
Show child attributes
"123 Main St"
"Apt 2"
"Floor 3"
"New York"
"NY"
"10001"
"United States"
A list of the packages included in the shipment.
Show child attributes
The ID of the package.
The name of the package. (e.g. 12x9x4)
The tracking number for the package.
The URL for the tracking number.
Deprecated.
Deprecated.
The ID of the shipping method returned at the package level.
"shipping_method_id"
The name of the shipping method returned at the package level.
"Standard Shipping"
The ID of the carrier used to ship the package.
"carrier_id"
The name of the carrier used to ship the package.
"carrier_name"
The Standard Carrier Alpha Code for the carrier used to ship the package.
The cost incurred by the warehouse to ship the package.
2.5
Show child attributes
1.5
1.5
1.5
The unit of measurement for the size of the package.
cm, in "in"
2.5
The unit of measurement for the weight of the package.
kg, oz, lb "lb"
A list of the inventory items included in the package.
Show child attributes
0
The ID of the lot the inventory item was picked from.
The expiration date of the lot the inventory item was picked from.
[
{
"shipment_id": "shipment_id",
"warehouse_id": "wh_id",
"shipped_date": "2022-05-06T01:02:03Z",
"raw_status": "raw_status",
"status": "shipped",
"shipping_method": "shipping_method_id",
"line_items": [
{
"inventory_item_id": "item_id",
"sku": "sku",
"quantity": 1,
"parent_product_id": null
}
],
"ship_to_address": {
"full_name": "John Doe",
"company": "company",
"address1": "address1",
"address2": "address2",
"address3": "address3",
"city": "city",
"state": "state",
"postal_code": "postal_code",
"country": "country"
},
"ship_from_address": {
"address1": "address1",
"address2": "address2",
"address3": "address3",
"city": "city",
"state": "state",
"postal_code": "postal_code",
"country": "country"
},
"packages": [
{
"package_id": "package_id",
"package_name": "package_name",
"tracking_number": "tracking_number",
"tracking_url": "tracking_url",
"shipping_method": "shipping_method_id",
"carrier": "carrier",
"shipping_method_id": "shipping_method_id",
"shipping_method_name": "shipping_method_name",
"carrier_id": "carrier_id",
"carrier_name": "carrier_name",
"scac": "scac",
"shipping_cost": 1,
"measurements": {
"length": 1,
"width": 1,
"height": 1,
"unit": "in",
"weight": 1,
"weight_unit": "lb"
},
"line_items": [
{
"inventory_item_id": "item_id",
"sku": "sku",
"quantity": 1,
"lot_id": "lot_id",
"expiration_date": "2022-06-06T01:02:03Z",
"parent_product_id": null
}
]
}
]
}
]URL link to the order in the external system (WMS/Freight etc).
"https://example.com/order/123"
A list of custom tags associated with the resource. A tag can be either a string or a dictionary with one key-value pair.
["tag1", "tag2", { "tag3": "value3" }]"order.created"
"integration_name"
"wms"
Success