How can I send a post call webhook
hey folks, does anyone have a beginner guide how to send a post call webhook to a make automation? Thank you! I have the sdk but i have no idea what to update.
server.url to your Make webhook endpoint. For example, in your assistant configuration:end-of-call-report event to this URL after each call, which Make can use to trigger your automation. For more details on the payload, see the Vapi server events documentation.⤵️ Mention @Vapi Support Bot for follow-ups 🐥
transcript field of the end-of-call-report payload. For example:end-of-call-report events, but you can filter them in your Make automation. end-of-call-report events trigger further actions in your automation, while other event types are ignored. server.urlend-of-call-reportend-of-call-reportend-of-call-reportend-of-call-reporthttps://hook.make.com/your-make-webhook-id"server": {
"url": "https://hook.make.com/your-make-webhook-id"
}{
"message": {
"type": "end-of-call-report",
"transcript": "AI: How can I help? User: What's the weather? ..."
// ...other fields
}
}{{ if(equals(triggerBody.message.type; "end-of-call-report"), true, false) }}