v1

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

Get user by email

Finds a user in the organization by their email address.

Scope: users:read
get/users/by-email/{email}

Path parameters

emailstring email required

Email address of the user.

Example:johndoe@example.com

Response

User found

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"
}