list_memberships
Retrieve and filter memberships in a Webex room using room ID, person ID, email, or limit results by specifying a maximum number. Integrates with the Webex MCP Server for efficient access to messaging data.
Instructions
List memberships in a Webex room.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max | No | The maximum number of memberships to return. | |
personEmail | No | The email address of the person to filter memberships by. | |
personId | No | The ID of the person to filter memberships by. | |
roomId | Yes | The ID of the room to list memberships for. |
Input Schema (JSON Schema)
{
"properties": {
"max": {
"description": "The maximum number of memberships to return.",
"type": "integer"
},
"personEmail": {
"description": "The email address of the person to filter memberships by.",
"type": "string"
},
"personId": {
"description": "The ID of the person to filter memberships by.",
"type": "string"
},
"roomId": {
"description": "The ID of the room to list memberships for.",
"type": "string"
}
},
"required": [
"roomId"
],
"type": "object"
}