curl --request GET \
--url https://api.attio.com/v2/workspace_members \
--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"
}
]
}Lists all workspace members in the workspace.
Required scopes: user_management:read.
curl --request GET \
--url https://api.attio.com/v2/workspace_members \
--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"
}
]
}This API uses OAuth 2.0 with the authorization code grant flow.
Success
Success
Show child attributes
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.
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?