Skip to main content
POST
/
message
/
react
Send reaction to a message
curl --request POST \
  --url https://api.wppfy.com/message/react \
  --header 'Content-Type: application/json' \
  --header 'token: <api-key>' \
  --data '
{
  "number": "5511999999999@s.whatsapp.net",
  "text": "👍",
  "id": "3EB0538DA65A59F6D8A251"
}
'
{
  "id": "owner:generated_message_id",
  "messageid": "generated_message_id",
  "content": {},
  "messageTimestamp": 1672531200000,
  "messageType": "reaction",
  "status": "Pending",
  "owner": "instance_owner"
}

Authorizations

token
string
header
required

Body

application/json
number
string
required

Chat number in international format

Example:

"5511999999999@s.whatsapp.net"

text
string
required

Reaction Unicode emoji (or empty string to remove reaction)

Example:

"👍"

id
string
required

ID of the message that will receive the reaction

Example:

"3EB0538DA65A59F6D8A251"

Response

Reaction sent successfully

id
string

Unique ID of the reaction message

Example:

"owner:generated_message_id"

messageid
string

Generated ID for the reaction message

Example:

"generated_message_id"

content
object

Reaction details

messageTimestamp
number

Message timestamp in milliseconds

Example:

1672531200000

messageType
string

Message type

Example:

"reaction"

status
string

Current message status

Example:

"Pending"

owner
string

Instance owner

Example:

"instance_owner"