The unique identifier (UUID) of the user to reinvite
Resend User Invitation
Sends a new invitation email to a user with a pending invitation. This is useful when the original invitation email was not received, expired, or was accidentally deleted. Only users with pending invitation status can be reinvited.
Path Parameters
Response
Response
Successfully sent invitation email to the user
Authentication
Path Parameters
Get User Role Assignments
Retrieves all roles currently assigned to a specific user, including both direct role assignments and roles inherited through group memberships. This information is crucial for understanding user permissions and access levels.
Query Parameters
Path Parameters
Response
200 application/json
Response
User role definition with specific permissions and capabilities
Unique identifier for the role
Timestamp when the role was created
Timestamp when the role was last modified
Human-readable name of the role
Detailed description of the role’s purpose and permissions
Whether this role can be deleted (system roles are typically not deletable)
Predefined role type that determines the base permissions
Allowed values:OWNERADMINDEFAULTBASICBILLINGAUDITORSUPPORT
Authentication
Path Parameters
Query Parameters
Modify User Role Assignments
Adds or removes roles from a user’s account. This operation allows administrators to dynamically adjust user permissions by modifying their role assignments. Changes take effect immediately and affect the user’s access to system resources.
Path Parameters
Body
application/json
Body
UpdateUserRoles
Data for adding or removing roles from a user
Array of role IDs to add to the user
Example:["550e8400-e29b-41d4-a716-446655440000"]
Array of role IDs to remove from the user
Example:["550e8400-e29b-41d4-a716-446655440001"]
Response
200
Response
Authentication
Path Parameters
Body
Add User to Group
Associates a user with a specific group, which may grant them additional roles and permissions based on the group’s configuration. Group membership can affect access policies and resource availability.
Path Parameters
Response
201
Response
Authentication
Path Parameters
Remove User from Group
Disassociates a user from a specific group, which may revoke roles and permissions that were granted through group membership. This operation helps maintain proper access control and organizational structure.