---
title: "List accountant users"
method: GET
path: "/admin/users"
tags: ["admin.users"]
---

# List accountant users

`GET /admin/users`

Returns a paginated list of accountant users.

## Query parameters

- `limit` number — The number of items to return
- `cursor` string, cuid — The cursor to return the next page of items
- `sort` 'createdAt' | 'updatedAt' | 'email' | 'firstName' | 'lastName' — The sort field of the results
- `order` 'asc' | 'desc' — The order of the results based on the sort field

## Response `200`

Accountant users

- object
  - `data` AccountantUser[], required
    - `id` string, cuid, required — Identifier of the accountant user.
    - `createdAt` string, date-time, required — ISO 8601 timestamp when the accountant user record was created.
    - `email` string, email, required — Email address of the accountant user.
    - `firstName` string, nullable, required — First name of the accountant user, if provided.
    - `lastName` string, nullable, required — Last name of the accountant user, if provided.
    - `roles` AccountantUserRole[], required — Roles assigned to the accountant user.
      - `id` string, cuid, required — Identifier of the role assigned to the accountant user.
      - `name` string, nullable, required — Internal identifier of the role. Null when the role is custom only.
      - `customName` string, nullable, required — Custom label for the role, if defined.
  - `pagination` Pagination, required
    - `nextCursor` string — The cursor to return the next page of items
    - `previousCursor` string — The cursor to return the previous page of items
    - `limit` integer, required — The number of items to return
    - `total` integer, required — The total number of items

## Other responses

- `401` — Unauthorized
- `422` — The validation error(s)
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.net/steuerboard/apis/steuerboard-api.md) · [All operations](https://skmtc.net/steuerboard/apis/steuerboard-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/steuerboard/steuerboard-api/versions/9170dd572b31/schema)
