---
title: "List Inventory Order Items"
method: GET
path: "/inventory/orders/{orderId}/items"
tags: ["InventoryOrders"]
---

# List Inventory Order Items

`GET /inventory/orders/{orderId}/items`

This endpoint retrieves a list of all the items for the given inventory order.

## Query parameters

- `brand_ids` string[]
- `category_ids` string[]

## Response `200`

The inventory order items were successfully retrieved

- object
  - `data` InventoryOrderItem[], required
    - `id` string, uuid, required — The ID of the inventory order item.
    - `order_id` string, uuid, required — The ID of the inventory order the item belongs to.
    - `quantity` integer, required — The quantity of the item to be ordered.
    - `unit_price` integer, required — The unit price of the item in the lowest denomination for the product's currency.
    - `product_id` string, uuid, required — The ID of the inventory product to be ordered.
    - `product_name` string, required — The name of the inventory product to be ordered.
    - `line_total` integer, required — The total price of the item in the lowest denomination for the supplier's currency.

## Other responses

- `401` — The user is unauthenticated
- `404` — The resource couldn't be found

---

[API](https://skmtc.dev/try/apis/trybe-api.md) · [All operations](https://skmtc.dev/try/apis/trybe-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/try/trybe-api/revisions/f37f92702da5/schema)
