update_team_membership
Modify team membership roles in Webex by updating the moderator status for a specific user. Enter the membership ID and set the isModerator flag to adjust permissions.
Instructions
Update a team membership in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
isModerator | Yes | Indicates if the user is a moderator. | |
membershipId | Yes | The unique identifier for the team membership. |
Input Schema (JSON Schema)
{
"properties": {
"isModerator": {
"description": "Indicates if the user is a moderator.",
"type": "boolean"
},
"membershipId": {
"description": "The unique identifier for the team membership.",
"type": "string"
}
},
"required": [
"membershipId",
"isModerator"
],
"type": "object"
}