curl --request GET \
--url https://api.example.com/api/v2/users \
--header 'Authorization: Bearer <token>'{
"users": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email_address": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"account_role": "<string>",
"is_deleted": true,
"profile_picture": null,
"profile_color": null
}
]
}Retrieve all users in your workspace. Requires account admin role. Use for user management or access auditing. Set include_deleted=true to include soft-deleted users.
curl --request GET \
--url https://api.example.com/api/v2/users \
--header 'Authorization: Bearer <token>'{
"users": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email_address": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"account_role": "<string>",
"is_deleted": true,
"profile_picture": null,
"profile_color": null
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
UsersListResponse(users: List[server.api_routes.users_api_v2.UserResponse])
Show child attributes