Actions
Send Audio Message
Actions
Send Audio Message
Post a audio message to WhatsApp
Send WhatsApp audio 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.
urlrequired
string
The url of the audio file to be sent.
isReplyTo
string
Optionally, add the id of the message you want to reply to. It will appear as a reply in the WhatsApp chat.
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, sendAudio } from "@trigger.dev/whatsapp";
new Trigger({
id: "demo",
on: events.messageEvent({
accountId: "<account_id>",
}),
run: async (event, ctx) => {
//send an automatic audio reply to the message
const audioResponse = await sendAudio("audio", {
fromId: event.metadata.phone_number_id,
to: event.message.from,
url: "https://ssl.gstatic.com/dictionary/static/pronunciation/2022-03-02/audio/wi/wikipedia_en_gb_1.mp3",
});
},
}).listen();