---
title: "List all users in organization"
method: GET
path: "/users"
tags: ["Users - CRUD"]
---

# List all users in organization

`GET /users`

Returns all users belonging to the authenticated user's organization,
ordered by created_at DESC, id ASC. Password hashes are excluded.

## Response `200`

Users found

- object
  - `message` string
  - `data` UserSafe[]
    - `id` integer, required
    - `name` string, required
    - `surname` string, required
    - `email` string, email, required
    - `role_id` integer, required — 1=Admin, 2=Reviewer, 3=Editor, 4=Auditor, 5=SuperAdmin
    - `created_at` string, date-time, required
    - `last_login` string, date-time
    - `updated_at` string, date-time
    - `is_demo` boolean
    - `organization_id` integer, nullable
    - `profile_photo_id` integer, nullable

## Other responses

- `204` — No users found (empty organization)
- `500` — Internal server error

## Changes

- **2026-04-21** `55cdc040840c` — 6 info
  - api operation id `getAllUsers` removed and replaced with ``
  - api tag `Users - CRUD` added
  - api tag `Users` removed
  - added the media type `application/json` for the response with the status `200`
  - …2 more
- **2026-04-05** `ac49160fcab0` — 1 breaking, 1 info
  - api path removed without deprecation
  - endpoint added
- **2026-04-05** `c419b1e72a65` — 1 info
  - endpoint added
- **2025-09-12** `76d1d355a072` — 1 breaking
  - api path removed without deprecation
- **2025-09-11** `cfa9ae933c17` — 1 breaking, 3 warning, 6 info
  - removed the success response with the status `204`
  - removed the optional property `data/items/last_login` from the response with the `200` status
  - removed the optional property `data/items/password_hash` from the response with the `200` status
  - removed the optional property `data/items/role` from the response with the `200` status
  - …6 more

[Full history](https://skmtc.dev/verifywise-ai/apis/verifywise-api/changes/users/get.md)

---

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