---
title: "List users and their permissions"
method: GET
path: "/users"
tags: ["Users"]
---

# List users and their permissions

`GET /users`

List every user in the account along with their permissions. Restricted to account admins: if the API key does not belong to a user whose `settings_access` level is `account_admin`, this endpoint returns `403 Forbidden`.

By default the list contains active and deactivated members followed by pending invitees — keep following `next_cursor` to page through all of them. Use `status` to narrow to one group. Invited users have no permissions yet, so their items omit the `permissions` object and `created_at` is the date they were invited.

## Query parameters

- `cursor` string
- `team` string
- `status` 'active' | 'deactivated' | 'invited'
- `settings_access` 'none' | 'team_admin' | 'account_admin'

## Response `200`

Paginated list of users.

- UserListResponse
  - `limit` integer, required
  - `next_cursor` string, nullable, required
  - `items` User[], required
    - `name` string, nullable, required
    - `email` string, email, required
    - `created_at` string, date-time, required
    - `status` 'active' | 'deactivated' | 'invited', required
    - `permissions` UserPermissions — Omitted for invited users.
      - `settings_access` UserSettingsAccess, required
        - `level` 'none' | 'team_admin' | 'account_admin', required
        - `teams` string[], required — Teams the level applies to - every team for `account_admin`, the administered teams for `team_admin`, empty for `none`.
      - `view_access` UserViewAccess, required
        - `level` 'own_meetings' | 'team' | 'multiple_teams' | 'all_teams', required
        - `teams` string[], required — Teams whose meetings the user can view - every team for `all_teams`, the granted teams for `team` and `multiple_teams`, empty for `own_meetings`.

## Other responses

- `400` — Bad request - the query parameters were invalid.
- `401` — Unauthorized - missing or invalid `Authorization` header.
- `403` — Forbidden - the authenticated user is not permitted to perform this request.
- `429` — Rate limited - you have exceeded the rate limit for the requested endpoint. Check our [rate limiting](/api-reference#rate-limiting) documentation for more information.

---

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