---
title: "List inventory adjustments"
method: GET
path: "/inventory/adjustments"
tags: ["InventoryAdjustments"]
---

# List inventory adjustments

`GET /inventory/adjustments`

Returns the paginated list of stock adjustments — positive or
negative changes to product quantities — across the caller's
visible scope, optionally filtered by site.

## Query parameters

- `site_id` string
- `per_page` integer
- `page` integer

## Response `200`

Adjustments were successfully retrieved.

- object
  - `data` InventoryAdjustment[], required
    - `id` string, uuid — The ID of the adjustment.
    - `organisation_id` string, uuid — The ID of the organisation this adjustment belongs to.
    - `site_id` string, uuid — The ID of the site this adjustment belongs to.
    - `product_id` string, uuid, required — The ID of the product this adjustment is for.
    - `quantity` integer, required — The amount of the adjustment, which may be positive or negative.
    - `reason_code` string — A reason code for the adjustment, e.g. `waste` or `transfer`.
    - `reason_description` string — A free-text reason for the adjustment.
    - `location_id` integer, nullable — The ID of the location the stock is moving from.
    - `created_at` string, date-time — The date and time the adjustment was created.
  - `meta` PaginationMeta, required — Counts and positional information for the current page of a list response. Use `current_page` and `last_page` to drive pagination UI, `total` for result counts, and `per_page` to confirm the page size the server actually applied (which may differ from the requested value when capped).
    - `from` integer, required — The item number from which this results set starts from
    - `to` integer, required — The item number from which this results set ends at
    - `total` integer, required — The total number of results
    - `current_page` integer, required — The current page number
    - `last_page` integer, required — The page number of the last result set
    - `per_page` integer, required — The number of results per page
    - `path` string, required — The path of this api request

## Other responses

- `401` — The user is unauthenticated

---

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