whatsapp_edit_message
Edit text in previously sent WhatsApp messages by providing the message ID, chat ID, and new content to correct errors or update information.
Instructions
Edit a previously sent text message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
messageId | Yes | ID of the message to edit | |
text | Yes | New text content for the message (max 4096 characters) | |
to | Yes | Chat ID where the message is located |
Input Schema (JSON Schema)
{
"properties": {
"messageId": {
"description": "ID of the message to edit",
"type": "string"
},
"text": {
"description": "New text content for the message (max 4096 characters)",
"type": "string"
},
"to": {
"description": "Chat ID where the message is located",
"type": "string"
}
},
"required": [
"messageId",
"to",
"text"
],
"type": "object"
}