Organization Members
Manage organization member roles and status
Use the members endpoint to update roles and statuses for existing organization members.
Update Member
PATCH /api/v1/organization/:orgId/members/:userIdMinimum role: admin
Updates a member's role and/or status within the organization.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
userId | string | The member's user ID |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
role | string | No | New role for the member |
status | string | No | New status for the member |
Valid Roles
| Role | Description |
|---|---|
owner | Full control including billing and org deletion |
admin | Manage members, keys, templates, and recordings |
viewer | Read-only access to recordings, analytics, and templates |
member | Standard access to recordings and templates |
Valid Statuses
| Status | Description |
|---|---|
active | Member can access the organization |
pending | Invited but has not yet accepted |
removed | Access revoked |
Example Request
{
"role": "admin",
"status": "active"
}Response
{
"user_id": "usr_002",
"email": "bob@example.com",
"name": "Bob Martinez",
"role": "admin",
"status": "active",
"updated_at": "2026-04-10T09:00:00.000Z"
}