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

# List users

`GET /users`

Returns users for the caller's organization. Users assigned to a cluster-wide role (`role.organizationId == null`, e.g. super-admins) are excluded; they belong to no single org's user catalog and the org-scoped Users tab does not display them.

## Query parameters

- `status` string
- `roleId` string, uuid
- `limit` integer
- `cursor` string

## Response `200`

Success

- object
  - `data` User[], required
    - `id` string, uuid, required
    - `actorId` string, uuid, required
    - `cognitoId` string, required
    - `firstName` string, required
    - `lastName` string, required
    - `email` string, required
    - `phone` string
    - `avatarUrl` string
    - `status` 'active' | 'invited' | 'deactivated', required
    - `invitedAt` number, nullable
    - `joinedAt` number, nullable
    - `deletedAt` number, nullable, required
    - `createdAt` number, required
    - `updatedAt` number, required
  - `meta` PaginationMeta, required
    - `cursor` string, nullable, required — Opaque cursor for the next page; null when no more results
    - `total` integer — Total matching results across all pages; included when cheaply computable

## Other responses

- `401` — Authentication required
- `403` — Insufficient permissions
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.net/voltairlabs/apis/voltair-api.md) · [All operations](https://skmtc.net/voltairlabs/apis/voltair-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voltairlabs/voltair-api/revisions/be08f4f706f5/schema)
