React to Message
Supported & TestedReact to an existing message using emoji reactions.
POSThttps://api.waplix.io/api/v1/messages/react
Authentication
Authorization: Bearer YOUR_API_KEY Parameters Specification
| Parameter | Type | Required | Description |
|---|---|---|---|
| instance_id | string | Required | Waplix instance id slot |
| message_id | string | Required | Target WhatsApp message id |
| emoji | string | Required | Reaction emoji string. Send empty string to remove reaction. |
instance_id
stringReq Waplix instance id slot
message_id
stringReq Target WhatsApp message id
emoji
stringReq Reaction emoji string. Send empty string to remove reaction.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/messages/react" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"instance_id": "demo_instance",
"message_id": "MSG_DEMO_001",
"chat_id": "15551234567@s.whatsapp.net",
"emoji": "๐"
}'Success Response
Response ยท 200 OK
{
"success": true,
"data": {
"instance_id": "demo_instance",
"message_id": "MSG_DEMO_001",
"emoji": "๐",
"status": "reacted"
}
} Related Webhook Events
The API response confirms that Waplix accepted or processed the request. Delivery and read updates may arrive asynchronously through configured webhooks.
message.reaction
Triggered when a reaction emoji is sent or updated on a message.
{
"event": "message.reaction",
"instance_id": "demo_instance",
"message_id": "MSG_DEMO_001",
"emoji": "๐",
"timestamp": 1782582330
} Was this page helpful?