PUT
React to Message
Add an emoji reaction on a message.
API endpoint
https://waclient.com/api/react_to_messageExample:
curl -X PUT \
'https://waclient.com/api/react_to_message' \
-H 'Content-Type: application/json' \
--data '{
"chat_id": "20100981XXXX",
"message_id": "ABC123",
"emoji": "👍",
"from_me": false,
"instance_id": "6A4B02A1XXXX",
"access_token": "EMCUH3NQQK8YXXXX"
}'Response
{
"status": "success",
"message": "Success",
"data": {
"chat_id": "[email protected]",
"message_id": "ABC123",
"reaction": "👍"
}
}| Parameter | Description |
|---|---|
| chat_id | Chat JID or phone number |
| message_id | Message ID |
| emoji | Reaction emoji, e.g. 👍 |
| from_me | Whether target message is from you (Optional) |
| instance_id | Your instance ID |
| access_token | Your access token |