v1

latestOpenAPI 3.0.32026-07-17542197.8 KB
Organization
User

Get organization members

Return the users that are members of the organization.

get/v1/organizations/{id}/members

Response

OK

idstring required

Unique identifier of the user.

first_namestring required

First name of the user.

last_namestring required

Last name of the user.

emailstring email required

Email address of the user.

picturestring uri nullable required

Profile picture of the user.

status'active' | 'pending' | 'inactive' | 'deleted' required

Status of the user.

rolesstring[] required

Organization roles the user belongs to (includes virtual roles based on permissions).

Example response

[
  {
    "id": "9bsv0s46s6s002p9ltq0",
    "first_name": "Test",
    "last_name": "User",
    "email": "user@example.com",
    "picture": "https://example.com/users/my-user.png",
    "status": "active",
    "roles": [
      "owner",
      "admin"
    ]
  }
]