Users
Get a user
Get a specific user by their ID.
Requires account admin role, account member role, or USER_READ permission at the account level.
Returns 404 if the user does not exist, does not belong to the caller's account, or the caller lacks read permission.
<Note>This endpoint is in beta, read more here.</Note>
get/v2/users/{user_id}
Path parameters
user_idstring required
A universally unique identifier (base64-encoded opaque string).
Example:RW50aXR5OjEyMzQ1
The unique user identifier (base64)
Response
An account user object
Example response
{
"id": "RW50aXR5OjEyMzQ1",
"email": "user@example.com",
"role": {
"id": "RW50aXR5OjEyMzQ1"
}
}