assign_role_to_team
Assign security roles to teams to provide consistent access permissions for groups of users working on similar tasks in Microsoft Dataverse.
Instructions
Assigns a security role to a team, granting all team members the permissions defined in that role. Use this to provide consistent access levels to groups of users working together on similar tasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
roleId | Yes | ID of the role to assign | |
teamId | Yes | ID of the team to assign the role to |
Input Schema (JSON Schema)
{
"properties": {
"roleId": {
"description": "ID of the role to assign",
"type": "string"
},
"teamId": {
"description": "ID of the team to assign the role to",
"type": "string"
}
},
"required": [
"roleId",
"teamId"
],
"type": "object"
}