remove_role_from_team
Remove security role assignments from teams to revoke permissions when access levels need adjustment or during team restructuring.
Instructions
Removes a security role assignment from a team, revoking the permissions granted by that role for all team members. Use this when teams no longer need certain access levels or when restructuring team permissions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
roleId | Yes | ID of the role to remove | |
teamId | Yes | ID of the team to remove the role from |
Input Schema (JSON Schema)
{
"properties": {
"roleId": {
"description": "ID of the role to remove",
"type": "string"
},
"teamId": {
"description": "ID of the team to remove the role from",
"type": "string"
}
},
"required": [
"roleId",
"teamId"
],
"type": "object"
}