Skip to main content
GET
/
v1
/
users
List all users
curl --request GET \
  --url https://api.example.com/v1/users
{
  "data": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "email": "<string>",
      "username": "<string>",
      "role": "SYSTEM",
      "auth_method": "<string>",
      "password_needs_reset": true,
      "password": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Query Parameters

cursor
string

Cursor for pagination (base64-encoded user ID)

limit
integer
default:100

The max number of users to return at a time.

Response

A list of users.

data
(LocalUser · object | OAuth2User · object | LDAPUser · object)[]
required
next_cursor
string | null
required