---
title: "List a member's allowance adjustments"
method: GET
path: "/members/{member_id}/adjustments"
tags: ["Allowance Management"]
---

# List a member's allowance adjustments

`GET /members/{member_id}/adjustments`

Returns the manual adjustments of one member and allowance type, oldest first. These are the ids DELETE /adjustments/{id} expects.

## Path parameters

- `member_id` string, uuid, required

## Query parameters

- `allowance_type_id` string, uuid, required

## Response `200`

Successful response

- object[]
  - `id` number, required
  - `amount` number, nullable, required — Days for a day-based allowance type, MINUTES for an hour-based one. Negative values subtract.
  - `date` string, required — The day the adjustment takes effect; it decides its year.
  - `comment` string, required
  - `compensatory_time_off` number, required — Non-zero when the adjustment came from overtime compensation.
  - `expiry_date` string, nullable, required — The LAST day (inclusive) the granted days can still be used, or null when they do not expire. The same convention POST /members/{member_id}/adjustments accepts, so a value read here can be sent straight back.

## Other responses

- `400` — Invalid input data
- `401` — Authorization not provided
- `403` — Insufficient access
- `404` — Not found
- `500` — Internal server error

## Changes

- **2026-08-25** `36d3180ef8c9` — 1 info
  - added the required property `items/expiry_date` to the response with the `200` status
- **2026-08-19** `ec144756b825` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/absentify/apis/absentify-crud-api/changes/members/:member_id/adjustments/get.md)

---

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