create_membership
Add members to a Webex room by specifying room ID, person details, and moderator status. Facilitates user management within Webex messaging environments.
Instructions
Create a membership in a Webex room.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
isModerator | No | Whether the person should be a moderator in the room. | |
personEmail | Yes | The email of the person to be added to the room. | |
personId | Yes | The ID of the person to be added to the room. | |
roomId | Yes | The ID of the room to which the member is being added. |
Input Schema (JSON Schema)
{
"properties": {
"isModerator": {
"description": "Whether the person should be a moderator in the room.",
"type": "boolean"
},
"personEmail": {
"description": "The email of the person to be added to the room.",
"type": "string"
},
"personId": {
"description": "The ID of the person to be added to the room.",
"type": "string"
},
"roomId": {
"description": "The ID of the room to which the member is being added.",
"type": "string"
}
},
"required": [
"roomId",
"personId",
"personEmail"
],
"type": "object"
}