Channels · WhatsApp · Messages

Send Reaction

Base URL & auth

  • Prefix: /api/business/public on https://stage.api.engagive.io (full base: https://stage.api.engagive.io/api/business/public).
  • Header: Authorization: Bearer <token> — create the token under Profile → API access token in the business app.
  • See also: Authentication, Errors & responses.

whatsapp_message_id is the `wamid.…` id from a sent or received message webhook / API response.

POST

Send reaction

Required permission: WhatsApp Chats — Add

Path
/api/business/public/channels/whatsapp/accounts/:accountId/messages/send-reaction
Example request body (JSON)
{
  "to": "923001234567",
  "whatsapp_message_id": "wamid.xxxxx",
  "emoji": "👍"
}
Example success response (JSON)
{
  "success": true,
  "message": "Reaction sent",
  "data": {},
  "metaResponse": {}
}

Try it

Runs in your browser — token is not stored

If the request fails with a network / CORS error, your API may not allow browser calls from this site. Use curl, Postman, or your server instead. See Postman.

Full request URL
POST https://stage.api.engagive.io/api/business/public/channels/whatsapp/accounts/1/messages/send-reaction