remove_privilege_from_role
Remove specific permissions from a security role to restrict user access and maintain proper authorization controls in Microsoft Dataverse.
Instructions
Removes a specific privilege from a security role, revoking the associated permissions. Use this to restrict access by removing specific operation permissions from a role.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
privilegeId | Yes | ID of the privilege to remove | |
roleId | Yes | ID of the role to remove privilege from |
Input Schema (JSON Schema)
{
"properties": {
"privilegeId": {
"description": "ID of the privilege to remove",
"type": "string"
},
"roleId": {
"description": "ID of the role to remove privilege from",
"type": "string"
}
},
"required": [
"roleId",
"privilegeId"
],
"type": "object"
}