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