Reaction Message
To send a text message, make POST
it to /{{Channel-ID}}/messages
and attach a message reaction object with type = reaction
,then add reaction object
like the sample below
{
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": "{{Recipient-Phone-Number}}",
"type": "reaction",
"reaction": {
"message_id": "<WAM_ID>",
"emoji": "<EMOJI>"
}
}
A successful response includes an object with an identifier prefixed with wamid
. Use the wamid
to track your message status.
Last updated