> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Send Message

Post a plain text, rich text or html message, to a room or user.

<Note>
  External Documentation

  To learn more, visit the [Cisco Webex documentation](https://developer.webex.com/docs/api/v1/messages/create-a-message).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                                                                                                   |
  | --------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | File            | The public URL to a binary file to be posted into the room. Only one file is allowed per message. Uploaded files are automatically converted into a format that all Webex clients can render. |
  | HTML            | The message, in HTML format.                                                                                                                                                                  |
  | Markdown        | The message, in Markdown format.                                                                                                                                                              |
  | Room ID         | The unique identifier of the room to send the message to.                                                                                                                                     |
  | Send To         | Choose to send direct message to a user or send a message to a group.                                                                                                                         |
  | Text            | The message, in plain text.                                                                                                                                                                   |
  | To Person Email | The Email address of the person to send a messages to. Can be retrieved from the `List People` action.                                                                                        |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "<string>",
	"roomId": "<string>",
	"roomType": "<string>",
	"text": "<string>",
	"personId": "<string>",
	"personEmail": "<string>",
	"created": "2023-06-10T19:11:32.654Z"
}
```

## Workflow Library Example

[Send Message with Cisco Webex and Send Results Via Email](https://library.blinkops.com/workflows/send-message-with-cisco-webex-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/send-message-with-cisco-webex-and-send-results-via-email/canvas" />
</div>
