Headers
Your organization-level Trackstar API key.
"<x-trackstar-api-key>"
Your user's access token for a specific integration (ShipHero, Extensiv, etc).
"<x-trackstar-access-token>"
Path Parameters
Body
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" }]
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"
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"
Deprecated in favor of channel_object.
"channel_id"
The channel the order was placed on.
For retail/EDI orders, the trading partner who placed the order (e.g. Target, Walmart).
"Target"
The ID of the actual shipping method used to ship the order. Can be passed into the Shipping Method endpoint for more details.. If shipping_method_name is also provided, this will take precedence.
"fedex_ground"
The method by which the warehouse will ship the order to the customer. Can be passed into the Shipping Method endpoint for more details.. Deprecated in favor of service_level
and shipping_method_id
.
"shipping_method_id"
The type of shipping method requested by the customer.
"Standard"
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
List of the products included in the order.
[
{
"product_id": "product_id",
"sku": "sku",
"quantity": 1,
"unit_price": 10.99,
"discount_amount": 1.5
}
]
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"