v1

latestOpenAPI 3.0.3MIT2026-07-24122271451.2 KB
User and Workspace management

Get User Details by ID

Get detailed information about a specific user by their ID, including contact information, license type, and workspace roles.

You must be an organization admin to get user details.

get/public/v1/users/{user_id}

Path parameters

user_idstring required

A unique identifier of the user.

Response

User details.

user_idstring

A unique identifier of the user in the organization.

emailstring

A user's email address.

first_namestring

A user's first name.

last_namestring

A user's last name.

phone_numberstring

A user's phone number.

licensestring

A user's license in the organization.

is_organization_ownerboolean

Whether the user is the owner of the organization.

Example response

{
  "user_id": "ajnN7eGutJZsRKjQrNuPkh",
  "email": "josh@example.com",
  "first_name": "Josh",
  "last_name": "Doe",
  "phone_number": "+14842634627",
  "license": "Full",
  "workspaces": [
    {
      "role": "Member",
      "workspace_id": "fERpqZdFaF9dHVAeVxPFaV",
      "membership_id": "vibuun3DXG8QDDLfXm27Ne"
    }
  ]
}