---
title: "List users"
method: GET
path: "/v1/users"
tags: ["User management"]
---

# List users

`GET /v1/users`

This API returns a paginated list of Dashboard members in your organization. Use this endpoint to review existing users, filter by manager status, or sort results by ID or email.

## Query parameters

- `offset` integer
- `limit` integer
- `is_manager` boolean
- `sort` 'id' | 'email'
- `order` 'asc' | 'desc'

## Response `200`

Users retrieved successfully

- SuccessListUsersSchema — Schema for the successful response of listing users.
  - `users` object[] — Users on the current page.
    - `id` integer — A unique identifier of the user.
    - `email` string, email — Email address of the user.
    - `first_name` string — First name of the user.
    - `last_name` string — Last name of the user.
    - `is_manager` boolean — Indicates whether the user has manager permissions.
  - `total` integer — Total number of users in the organization matching the query.
  - `offset` integer — The number of records skipped for this page. Reflects the offset value submitted in the request.
  - `limit` integer — The maximum number of records returned for this page. Reflects the limit value submitted in the request.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `412` — Precondition failed
- `500` — Internal server error

---

[API](https://skmtc.net/ocrolus/apis/user-management.md) · [All operations](https://skmtc.net/ocrolus/apis/user-management/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ocrolus/user-management/versions/3571ef602d13/schema)
