remove_members_from_team
Remove users from team membership to revoke their access to team-owned records and team-based permissions when users no longer need access or change roles.
Instructions
Removes users from team membership, revoking their access to team-owned records and team-based permissions. Use this when users no longer need team access or are changing roles.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memberIds | Yes | Array of user IDs to remove from team | |
teamId | Yes | ID of the team to remove members from |
Input Schema (JSON Schema)
{
"properties": {
"memberIds": {
"description": "Array of user IDs to remove from team",
"items": {
"type": "string"
},
"type": "array"
},
"teamId": {
"description": "ID of the team to remove members from",
"type": "string"
}
},
"required": [
"teamId",
"memberIds"
],
"type": "object"
}