Skip to main content
POST
/
message
/
sendReaction
/
{instanceName}
Send Reaction
curl --request POST \
  --url https://api.flowmod.ai/message/sendReaction/{instanceName} \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '
{
  "reactionMessage": {
    "key": {
      "id": "<string>",
      "fromMe": true,
      "remoteJid": "<string>"
    },
    "text": "👍"
  }
}
'
{
  "status": 201,
  "error": false,
  "response": {
    "key": {
      "id": "<string>",
      "fromMe": true,
      "remoteJid": "<string>"
    },
    "message": {},
    "messageTimestamp": 123,
    "status": "PENDING",
    "pushName": "<string>"
  }
}

Authorizations

apikey
string
header
required

Organization-specific API key for Evolution API access

Path Parameters

instanceName
string
required

Body

application/json
reactionMessage
object
required

Response

200 - application/json

Reaction sent successfully

status
number
Example:

201

error
boolean
Example:

false

response
object