v1

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

Add user to organization

Adds a new user to the organization. Sends an invitation email.

Scope: users:write
post/users

Request body

emailstring email required

Email address of the user.

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

Role of the user within the organization.

Example request

{
  "email": "johndoe@example.com",
  "role": "member"
}

Response

User added successfully

userIdstring required

Unique identifier of the user.

Example response

{
  "userId": "cmk46vbto00002a6g3gzx6l0"
}