Haaris-Blackframe
09/17/2025, 7:20 PMVapi Support Bot
09/17/2025, 7:22 PMserver.url to your Make webhook endpoint. For example, in your assistant configuration:
json
"server": {
"url": "https://hook.make.com/your-make-webhook-id"
}
Vapi will POST an 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](https://docs.vapi.ai/server-url/events).
Source:
- [Server Events Vapi Documentation](https://docs.vapi.ai/server-url/events)Haaris-Blackframe
09/17/2025, 7:22 PMHaaris-Blackframe
09/17/2025, 7:23 PMVapi Support Bot
09/17/2025, 7:24 PMtext
https://hook.make.com/your-make-webhook-id
Save your changes, and Vapi will send post-call events to this URL automatically.
For more details, see the [Vapi server URL documentation](https://docs.vapi.ai/server-url/setting-server-urls).
Source:
- [Setting Server URLs](https://docs.vapi.ai/server-url/setting-server-urls)Haaris-Blackframe
09/17/2025, 7:25 PMHaaris-Blackframe
09/17/2025, 7:34 PMVapi Support Bot
09/17/2025, 7:35 PMtranscript field of the end-of-call-report payload. For example:
json
{
"message": {
"type": "end-of-call-report",
"transcript": "AI: How can I help? User: What's the weather? ..."
// ...other fields
}
}
You can use this field in your Make automation to access the full call transcript.
[See more in the Vapi server events documentation.](https://docs.vapi.ai/server-url/events)
Source:
- [Server Events Vapi Documentation](https://docs.vapi.ai/server-url/events)Haaris-Blackframe
09/17/2025, 7:40 PMVapi Support Bot
09/17/2025, 7:41 PMend-of-call-report events, but you can filter them in your Make automation.
In your Make scenario, add a filter after the webhook module:
json
{{ if(equals(triggerBody.message.type; "end-of-call-report"), true, false) }}
This ensures only end-of-call-report events trigger further actions in your automation, while other event types are ignored.
[See Vapi server events documentation for event types.](https://docs.vapi.ai/server-url/events)
Source:
- [Server Events Vapi Documentation](https://docs.vapi.ai/server-url/events)Haaris-Blackframe
09/18/2025, 3:02 PMHaaris-Blackframe
09/20/2025, 5:58 PMChiranjeet Mishra
09/23/2025, 4:05 PMLiam T Bilich
11/05/2025, 3:51 PMLiam T Bilich
11/05/2025, 3:57 PM