v1
latestOpenAPI 3.0.02026-08-04891301.4 MBRetrieve a user by ID
Returns the user identified by user. The authenticated user must share at least one team with the target user; requests for users outside any shared team are rejected with 403.
A user may always retrieve their own profile with this endpoint. Use the GET /users/me endpoint as a convenience alias for retrieving the authenticated user without specifying an ID.
get/api/v1/users/{user}
Path parameters
userstring required
User ID (usr_...) of the user to retrieve.
Response
Successful response
Example response
{
"alias": "jdoe",
"app": "dap_0aBcDeFgHiJkLmNoPqRsTu",
"app_name": "Example Name",
"email": "user@example.com",
"id": "usr_0aBcDeFgHiJkLmNoPqRsTu",
"is_system_user": true,
"metadata": {
"key": "value"
},
"name": "Example Name",
"org": "org_0aBcDeFgHiJkLmNoPqRsTu",
"org_name": "Example Name",
"org_role": "member",
"sandbox": "dsb_0aBcDeFgHiJkLmNoPqRsTu",
"sandbox_name": "Example Name"
}