send_webex_message
Send messages to Webex rooms or individuals with text, markdown, or HTML, attach files, and reply in threads.
Instructions
Send a message to a Webex room or person.
Args: room_id: Room ID to send the message to (use this OR to_person_id/to_person_email) to_person_id: Person ID to send a direct message to to_person_email: Person email to send a direct message to text: Plain text message content markdown: Markdown formatted message content html: HTML formatted message content (for buttons/cards) files: URL to attach (single file URL as a string) parent_id: Parent message ID for threaded replies
Returns: Standardized response dictionary with success/error information
Examples: # Send to room result = send_webex_message( room_id="Y2lzY29zcGFyazovL3VzL1JPT00vYmJjZWIx", text="Hello team!" )
# Send direct message
result = send_webex_message(
to_person_email="user@company.com",
markdown="**Important update:** Please review the report"
)Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| html | No | ||
| text | No | ||
| files | No | ||
| room_id | No | ||
| markdown | No | ||
| parent_id | No | ||
| to_person_id | No | ||
| to_person_email | No |