create_team_membership
Add a person to a Webex team by specifying their ID, email, and team ID, with an option to designate them as a moderator. Facilitates team collaboration management.
Instructions
Create a team membership in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
isModerator | No | Indicates if the person should be a moderator. | |
personEmail | Yes | The email address of the person to be added to the team. | |
personId | Yes | The ID of the person to be added to the team. | |
teamId | Yes | The ID of the team to which the person will be added. |
Input Schema (JSON Schema)
{
"properties": {
"isModerator": {
"description": "Indicates if the person should be a moderator.",
"type": "boolean"
},
"personEmail": {
"description": "The email address of the person to be added to the team.",
"type": "string"
},
"personId": {
"description": "The ID of the person to be added to the team.",
"type": "string"
},
"teamId": {
"description": "The ID of the team to which the person will be added.",
"type": "string"
}
},
"required": [
"teamId",
"personId",
"personEmail"
],
"type": "object"
}