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

# List Users

`GET /v1/users`

Use this endpoint to list all users registered in the system.

## Query parameters

- `page` integer
- `limit` integer

## Response `200`

The list of all users registered in the system.

- object
  - `items` UserResponse[], required
    - `email` string — User’s email address.
    - `firstName` string — User’s first name.
    - `groups` string[] — List of groups the user belongs to.
    - `id` string — Unique identifier of the user.
    - `lastName` string — User’s last name.
    - `username` string — Unique username.
  - `limit` integer, required
  - `next_cursor` string
  - `page` integer
  - `prev_cursor` string

## Other responses

- `404`
- `500`

---

[API](https://skmtc.net/lerian/apis/identity-plugin.md) · [All operations](https://skmtc.net/lerian/apis/identity-plugin/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lerian/identity-plugin/versions/25daba385532/schema)
