Properties
| Name | Type | Description |
|---|---|---|
| message_id | string | ID of the message to react to |
| emoji | string | Emoji character or empty string to remove reaction |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/whatsapp/refs/heads/main/json-schema/whatsapp-cloud-api-reaction-message-schema.json",
"title": "ReactionMessage",
"description": "ReactionMessage from WhatsApp API",
"type": "object",
"properties": {
"message_id": {
"type": "string",
"description": "ID of the message to react to",
"example": "wamid.abc123"
},
"emoji": {
"type": "string",
"description": "Emoji character or empty string to remove reaction",
"example": "example_value"
}
},
"required": [
"message_id",
"emoji"
]
}