List all users in a team.
Requires team:read permission (all team members) or team:read_all permission (super admin).
cURL
curl --request GET \ --url https://api.example.com/v1/teams/{team_id}/users
[ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "email": "jsmith@example.com", "is_active": true, "is_verified": true, "role": "OWNER", "membership_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "joined_at": 123, "given_name": "<string>", "family_name": "<string>", "external_user_id": "<string>", "profile_image": "<string>", "is_super_admin": false } ]
Successful Response
Team membership roles.
OWNER
ADMIN
MEMBER
Was this page helpful?