list_messages
Retrieve messages from a Webex room by room ID, filter by parent message, mentioned people, date, or message ID, and set a response limit.
Instructions
List messages in a Webex room.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
before | No | List messages sent before a specific date and time. | |
beforeMessage | No | List messages sent before a specific message, by ID. | |
max | No | Limit the maximum number of messages in the response. | |
mentionedPeople | No | List messages with these people mentioned, by ID. | |
parentId | No | The ID of the parent message to filter by. | |
roomId | Yes | The ID of the room to list messages from. |
Input Schema (JSON Schema)
{
"properties": {
"before": {
"description": "List messages sent before a specific date and time.",
"type": "string"
},
"beforeMessage": {
"description": "List messages sent before a specific message, by ID.",
"type": "string"
},
"max": {
"description": "Limit the maximum number of messages in the response.",
"type": "integer"
},
"mentionedPeople": {
"description": "List messages with these people mentioned, by ID.",
"type": "string"
},
"parentId": {
"description": "The ID of the parent message to filter by.",
"type": "string"
},
"roomId": {
"description": "The ID of the room to list messages from.",
"type": "string"
}
},
"required": [
"roomId"
],
"type": "object"
}