Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Gets list of all users and their roles in the team with the specified teamId. Get all user role IDs with the API call GET /users/roles.
teamId
GET /users/roles
The ID of the team.
22
Successful response
const response = await fetch('https://eu1.make.com/api/v2/teams/{teamId}/user-team-roles', { method: 'GET', headers: {}, }); const data = await response.json();
{ "userTeamRoles": [ { "usersRoleId": 0, "userId": 0, "teamId": 0, "changeable": false, "ssoPending": false } ] }