Actions
Send a Contacts Message
Actions
Send a Contacts Message
Post a contacts message to WhatsApp
Send WhatsApp contacts 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.
contactsrequired
object
An array of contacts to be sent.
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 contacts message
const contactsResponse = await sendContacts("contacts", {
fromId: event.metadata.phone_number_id,
to: event.message.from,
contacts: [
{
name: {
first_name: "Matt",
last_name: "Aitken",
formatted_name: "Matt Aitken",
},
phones: [
{
phone: "+12345678901",
},
],
},
],
});
},
}).listen();