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