User organization roles define user permissions in the organization. The endpoints discussed further retrieve information about user roles in the organization. Use the /users/{userId}/user-organization-roles/{organizationIdId}
to manage user organization roles. Check out the .
Retrieves information about all users and their roles in the organization with the specified organizationId
.
The ID of the organization.
11
Specifies columns that are returned in the response. Use the cols[]
parameter for every column that you want to return in the response. For example GET /endpoint?cols[]=key1&cols[]=key2
to get both key1
and key2
columns in the response.
{"value":["userId","organizationId","userRoleId","invitation","organizationTeamsCount","joinedTeamsCount"]}
Retrieves information about a user role in an organization with the specified userId
and organizationId
. Get all user role IDs with the API call GET users/roles
.
The ID of the organization.
11
The ID of the user.
111
Specifies columns that are returned in the response. Use the cols[]
parameter for every column that you want to return in the response. For example GET /endpoint?cols[]=key1&cols[]=key2
to get both key1
and key2
columns in the response.
{"value":["userId","organizationId","userRoleId","invitation","organizationTeamsCount","joinedTeamsCount"]}
Transfer organization ownership to the specified user. Only the user that has the user role "Owner" in the organization can transfer ownership.
The ID of the organization.
11
The ID of the user.