v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-01-138320.8 KB
Users

List organization users

Lists all users from the organization.

Scope: users:read
get/users

Response

List of organization users

idstring required

Unique identifier of the user.

namestring nullable required

Full name of the user.

emailstring email required

Email address of the user.

photoUristring nullable required

URL to the profile picture of the user.

role'admin' | 'member' | 'viewer' required

Role of the user within the organization.

createdAtstring date-time required

Timestamp when the user was created.

Example response

[
  {
    "id": "cmk46vbto00002a6g3gzx6l0",
    "name": "John Doe",
    "email": "johndoe@example.com",
    "role": "member",
    "createdAt": "2025-11-25T07:20:37Z"
  }
]