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

# List Deployment Users

`GET /v1/admin/users`

List every account on this deployment, with the organizations each belongs to.

Deployment-wide, so it is not the same list as ``GET /v1/organizations/me/members``:
that one is the caller's organization roster and drops a suspended
membership, while this one carries every identity at whatever standing,
including one whose memberships are all suspended. Each row also reports when
the account last signed in to the dashboard, and null there means never.

## Query parameters

- `skip` integer — Number of records to skip
- `limit` integer — Maximum number of records to return

## Response `200`

Successful Response

- DeploymentUsersPublic
  - `count` integer, required
  - `data` DeploymentUserPublic[], required
    - `created_at` string, date-time, required
    - `email` string, nullable, required
    - `full_name` string, nullable, required
    - `id` string, uuid, required
    - `is_active` boolean, required
    - `is_bootstrap_operator` boolean, required
    - `is_self` boolean, required
    - `is_superuser` boolean, required
    - `last_sign_in_at` string, date-time, nullable, required
    - `organizations` DeploymentUserOrganizationPublic[], required
      - `name` string, required
      - `organization_id` string, uuid, required
      - `role` string, required
      - `slug` string, required
      - `status` string, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/mozilla-ai/apis/otari.md) · [All operations](https://skmtc.dev/mozilla-ai/apis/otari/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/mozilla-ai/otari/revisions/7f178e92b56c/schema)
