Workspace members
List workspace members
Workspace members
List workspace members
Lists all workspace members in the workspace.
Required scopes: user_management:read
.
GET
/
v2
/
workspace_members
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": "susan.kare@apple.com",
"created_at": "2022-11-21T13:22:49.061281000Z",
"access_level": "member"
}
]
}
Authorizations
This API uses OAuth 2.0 with the authorization code grant flow.
Response
200 - application/json
Success
The first name of the user.
Example:
"Susan"
The last name of the user.
Example:
"Kare"
A URL to the user's avatar image.
Example:
"https://lh3.googleusercontent.com/a/ABdFTp7z6OgAW9EqZx78wTqPfWClGCJCZXFjQfBG7rd9=s96-c"
The user's email address.
Example:
"susan.kare@apple.com"
When the workspace member was created.
Example:
"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.
Available options:
admin
, member
, suspended
Example:
"member"
Was this page helpful?
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": "susan.kare@apple.com",
"created_at": "2022-11-21T13:22:49.061281000Z",
"access_level": "member"
}
]
}