v1
latestOpenAPI 3.1.02026-07-22802,2441.7 MBGet Order Packs
Returns the packs for the specified order.
get/wms/orders/{order_id}/packs
Path parameters
order_idstring required
Headers
x-trackstar-api-keystring required
Example:<x-trackstar-api-key>
Your organization-level Trackstar API key.
x-trackstar-access-tokenstring required
Example:<x-trackstar-access-token>
Your user's access token for a specific integration (ShipHero, Extensiv, etc).
Response
Successful response
Example response
{
"data": {
"packs": [
{
"pack_id": "package_id",
"measurements": {
"length": 1.5,
"width": 1.5,
"height": 1.5,
"unit": "in",
"weight": 2.5,
"weight_unit": "lb"
}
}
],
"carrier_id": "carrier_id",
"carrier_name": "carrier_name",
"scac": "scac",
"shipping_method_id": "shipping_method_id",
"shipping_method_name": "shipping_method_name",
"ship_to_address": {
"full_name": "John Doe",
"company": "Company",
"address1": "123 Main St",
"address2": "Apt 2",
"address3": "Floor 3",
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country": "United States",
"phone_number": "123-456-7890",
"email_address": "johndoe@example.com"
},
"order_line_items": [
{
"product_id": null,
"sku": "sku",
"quantity": 1
}
],
"additional_fields": {
"key": "value"
}
}
}