add_members_to_team
Add users to a team to grant them access to team-owned records and team-based permissions, expanding membership for resource sharing.
Instructions
Adds users as members to a team, granting them access to team-owned records and team-based permissions. Use this to expand team membership and provide users with team-level access to resources.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memberIds | Yes | Array of user IDs to add as team members | |
teamId | Yes | ID of the team to add members to |
Input Schema (JSON Schema)
{
"properties": {
"memberIds": {
"description": "Array of user IDs to add as team members",
"items": {
"type": "string"
},
"type": "array"
},
"teamId": {
"description": "ID of the team to add members to",
"type": "string"
}
},
"required": [
"teamId",
"memberIds"
],
"type": "object"
}