---
title: "Get Order Packs"
method: GET
path: "/wms/orders/{order_id}/packs"
---

# Get Order Packs

`GET /wms/orders/{order_id}/packs`

Returns the packs for the specified order.

## Path parameters

- `order_id` string, required

## Headers

- `x-trackstar-api-key` string, required
- `x-trackstar-access-token` string, required

## Response `200`

Successful response

- WmsOrderPacksSingleItemEndpoint
  - `data` OrderPackSchema
    - `packs` Pack[], required — A list of the packages included in the order.
      - `pack_id` string, required — The unique id of the package.
      - `measurements` PackageMeasurements, required
        - `length` number, nullable, required
        - `width` number, nullable, required
        - `height` number, nullable, required
        - `unit` 'cm' | 'in', nullable, required — The unit of measurement for the size of the package.
        - `weight` number, nullable, required
        - `weight_unit` 'kg' | 'oz' | 'lb', nullable, required — The unit of measurement for the weight of the package.
      - `line_items` PackLineItem[], required — A list of the inventory items included in the package.
        - `inventory_item_id` string, required — The ID of the inventory item. Can be passed into the [Inventory](/api-reference/wms-api/inventory/get-item) endpoint for more details.
        - `sku` string, nullable, required
        - `quantity` integer, required
    - `carrier_id` string, nullable, required — The ID of the carrier for the shipping method.
    - `carrier_name` string, nullable, required — The name of the carrier for the shipping method.
    - `scac` string, nullable, required — The Standard Carrier Alpha Code (SCAC) for the shipping method.
    - `shipping_method_id` string, nullable, required — The ID of the shipping method.
    - `shipping_method_name` string, nullable, required — The name of the shipping method.
    - `ship_to_address` ShipToAddress, required
      - `full_name` string, nullable, required
      - `company` string, nullable, required
      - `address1` string, nullable, required
      - `address2` string, nullable, required
      - `address3` string, nullable, required
      - `city` string, nullable, required
      - `state` string, nullable, required
      - `postal_code` string, nullable, required
      - `country` string, nullable, required
      - `phone_number` string, nullable, required
      - `email_address` string, nullable, required
    - `order_line_items` WmsOrderPackLineItem[], required — List of the products included in the order.
      - `product_id` string, required — The ID of the inventory item. Can be passed into the [Inventory](/api-reference/wms-api/inventory/get-item) endpoint for more details.
      - `sku` string, nullable, required
      - `quantity` integer, required
    - `additional_fields` object, required — Integration-specific fields

## Other responses

- `404` — Not found
- `422` — Validation error

---

[API](https://skmtc.net/trackstarhq/apis/trackstar-api.md) · [All operations](https://skmtc.net/trackstarhq/apis/trackstar-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/trackstarhq/trackstar-api/revisions/4bc5c6e1a8bf/schema)
