whatsapp_send_reaction
Send an emoji reaction to a specific WhatsApp message by providing the message ID, chat ID, sender ID, and desired emoji. This allows users to express quick responses to messages in WhatsApp conversations.
Instructions
Send a reaction (emoji) to a specific message.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| messageId | Yes | ID of the message to react to | |
| reaction | Yes | Emoji reaction to send (max 10 characters) | |
| senderId | Yes | ID of the original message sender | |
| to | Yes | Chat ID where the message is located |
Input Schema (JSON Schema)
{
"properties": {
"messageId": {
"description": "ID of the message to react to",
"type": "string"
},
"reaction": {
"description": "Emoji reaction to send (max 10 characters)",
"type": "string"
},
"senderId": {
"description": "ID of the original message sender",
"type": "string"
},
"to": {
"description": "Chat ID where the message is located",
"type": "string"
}
},
"required": [
"messageId",
"to",
"senderId",
"reaction"
],
"type": "object"
}