edit_message
Update text or markdown in a Webex message by specifying the message ID, room ID, and new content. Enables quick edits to enhance clarity or correct errors.
Instructions
Edit a message in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
markdown | No | The new markdown for the message (optional). | |
messageId | Yes | The unique identifier for the message to edit. | |
roomId | Yes | The ID of the room where the message is located. | |
text | Yes | The new text for the message. |
Input Schema (JSON Schema)
{
"properties": {
"markdown": {
"description": "The new markdown for the message (optional).",
"type": "string"
},
"messageId": {
"description": "The unique identifier for the message to edit.",
"type": "string"
},
"roomId": {
"description": "The ID of the room where the message is located.",
"type": "string"
},
"text": {
"description": "The new text for the message.",
"type": "string"
}
},
"required": [
"messageId",
"roomId",
"text"
],
"type": "object"
}