list_direct_messages
Retrieve all messages from a 1:1 room in Cisco Webex by specifying a parent ID, person ID, or email. Enables efficient message tracking and management.
Instructions
List all messages in a 1:1 room.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parentId | Yes | The parent ID to filter messages. | |
personEmail | Yes | The person email to filter messages in a 1:1 room. | |
personId | Yes | The person ID to filter messages in a 1:1 room. |
Input Schema (JSON Schema)
{
"properties": {
"parentId": {
"description": "The parent ID to filter messages.",
"type": "string"
},
"personEmail": {
"description": "The person email to filter messages in a 1:1 room.",
"type": "string"
},
"personId": {
"description": "The person ID to filter messages in a 1:1 room.",
"type": "string"
}
},
"required": [
"parentId",
"personId",
"personEmail"
],
"type": "object"
}