raymoney
12/05/2025, 2:15 AMVapi Support Bot
12/05/2025, 2:16 AMVapi Support Bot
12/05/2025, 2:17 AMraymoney
12/05/2025, 2:19 AMVapi Support Bot
12/05/2025, 2:20 AMjs
// Example: Only forward "call-ended" events
app.post('/webhook', (req, res) => {
if (req.body.type === 'call-ended') {
// Forward to Make here
}
res.status(200).send();
});
For now, direct event filtering at the Vapi webhook configuration is not supported ([see docs](https://docs.vapi.ai/server-url)).
Sources:
- [Server URLs](https://docs.vapi.ai/server-url)
- [CLI Webhook Documentation](https://docs.vapi.ai/cli/webhook)raymoney
12/05/2025, 2:24 AMChiranjeet Mishra
12/09/2025, 1:46 AMend-of-call report as your main identifier for a call-ended webhook since it only executes once at the end of a call.raymoney
12/09/2025, 8:37 PMChiranjeet Mishra
01/07/2026, 1:55 AM