---
title: "List the items of a stock take (v2)"
method: GET
path: "/inventory/stock-takes/{stockTakeId}/items-v2"
tags: ["StockTakes"]
---

# List the items of a stock take (v2)

`GET /inventory/stock-takes/{stockTakeId}/items-v2`

Returns the items of a stocktake with v2 totals and filters. Use
`query`, `status`, and the category/supplier/brand filters to
drill into a specific slice of the stocktake while it's in
progress. Compared to the v1 list (`listStockTakeItems`), the
v2 response surfaces additional totals: total items, counted,
uncounted, total adjustment value, and currency.

## Query parameters

- `category_ids` string[]
- `supplier_ids` string[]
- `brand_ids` string[]
- `query` string
- `status` 'all' | 'uncounted' | 'counted'

## Response `200`

The stock take items were successfully retrieved.

- object
  - `data` StockTakeItem[], required
    - `id` string, uuid, required — The ID of the stock take item.
    - `stock_take_id` string, uuid, required — The ID of the stock take this item belongs to.
    - `product_id` string, uuid, required — The ID of the inventory product this stocktake item belongs to.
    - `name` string, required — The name of the inventory product.
    - `sku` string, nullable — The stock keeping unit (SKU) for the stocktake item.
    - `unit_cost` integer, required — The unit cost of the stocktake item in the lowest denomination for the product's currency.
    - `counted_quantity` number, required — The quantity counted for this stocktake item.
    - `expected_quantity` number, required — The expected quantity for this stocktake item.
    - `adjusted_quantity` number, required — The adjusted quantity for this stocktake item.
    - `adjusted_value` integer, required — The adjusted value for this stocktake item.
    - `created_at` string, date-time, required — The date and time the stock take item was created.
    - `updated_at` string, date-time, required — The date and time the stock take item was last updated.
  - `meta` object, required
    - `total_items` integer — The total number of items in the stock take.
    - `total_counted` integer — The total number of items counted in the stock take.
    - `total_uncounted` integer — The total number of items uncounted in the stock take.
    - `total_adjustment_value` integer — The value of the total adjustments for the stock take.
    - `currency` string — The currency of the stock take.

## 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)
