cURL
curl --request GET \ --url https://api.attio.com/v2/workspace_members/{workspace_member_id} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": { "workspace_id": "14beef7a-99f7-4534-a87e-70b564330a4c", "workspace_member_id": "50cf242c-7fa3-4cad-87d0-75b1af71c57b" }, "first_name": "Susan", "last_name": "Kare", "avatar_url": "https://lh3.googleusercontent.com/a/ABdFTp7z6OgAW9EqZx78wTqPfWClGCJCZXFjQfBG7rd9=s96-c", "email_address": "[email protected]", "created_at": "2022-11-21T13:22:49.061281000Z", "access_level": "member" } }
Gets a single workspace member by ID.
Required scopes: user_management:read.
user_management:read
This API uses OAuth 2.0 with the authorization code grant flow.
A UUID to identify the workspace member.
"50cf242c-7fa3-4cad-87d0-75b1af71c57b"
Success
Show child attributes
The ID of the workspace the workspace member belongs to.
"14beef7a-99f7-4534-a87e-70b564330a4c"
The ID of the workspace member.
The first name of the user.
"Susan"
The last name of the user.
"Kare"
A URL to the user's avatar image.
"https://lh3.googleusercontent.com/a/ABdFTp7z6OgAW9EqZx78wTqPfWClGCJCZXFjQfBG7rd9=s96-c"
The user's email address.
"[email protected]"
When the workspace member was created.
"2022-11-21T13:22:49.061281000Z"
Whether the workspace member is suspended or not and what level of privileges they have inside the workspace. We do not delete workspace members so that you can successfully attribute past actions to suspended workspace members.
admin
member
suspended
"member"
Was this page helpful?