Actions
Send a Reaction Message
Actions
Send a Reaction Message
Post a reaction to a WhatsApp message
Send WhatsApp reaction messages from your WhatsApp Business Account.
Params
keyrequired
string
A unique string. Please see the Keys and Resumability doc for more info.
messagerequired
object
fromId
string
The id of the phone number you want to send the message from. You can find this in the your WhatsApp Business dashboard. Note, this is not the phone number.
to
string
The phone number you want to send the message to.
emojirequired
string
The emoji you want to react to the message with 🔥
isReplyTorequired
string
This is required: add the id of the message you want to reply to.
Response
contacts
object
The contact information of who received the message
messages
object
An array of message ids that were sent
messaging_product
string
Always whatsapp
Example Workflows
Notify Slack on New GitHub Star
import { Trigger } from "@trigger.dev/sdk";
import { events, sendVideo } from "@trigger.dev/whatsapp";
new Trigger({
id: "demo",
on: events.messageEvent({
accountId: "<account_id>",
}),
run: async (event, ctx) => {
//send an automatic reaction to the message
const reactionResponse = await sendReaction("reaction", {
fromId: event.metadata.phone_number_id,
to: event.message.from,
isReplyTo: event.message.id,
emoji: "🔥",
});
},
}).listen();