send_webex_message_with_mentions
Send a Webex message with @mentions to a room or person. Supports plain text, markdown, HTML, file attachments, and threaded replies.
Instructions
Send a message to a Webex room or person with proper mention support.
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 mentions: List of mention dicts with keys: - type: "email", "person_id", or "all" - value: email address or person ID (not needed for "all") - display_name: optional display name
Returns: Standardized response dictionary with success/error information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| html | No | ||
| text | No | ||
| files | No | ||
| room_id | No | ||
| markdown | No | ||
| mentions | No | ||
| parent_id | No | ||
| to_person_id | No | ||
| to_person_email | No |