julian
09/29/2025, 4:28 PMVapi Support Bot
09/29/2025, 4:29 PMerror events, but these are typically related to call lifecycle or system-level issues, not general API errors like "get-transports" or quota limits. To handle error events in your webhook handler, you can filter for the error type:
js
app.post('/webhook', (req, res) => {
if (req.body.type === 'error') {
// Handle error event here
console.error('Vapi error event:', req.body);
}
res.status(200).send();
});
Currently, there is no documentation indicating that non-call-related errors (like quota or transport errors) trigger webhook events. For more details, see the [webhook event types documentation](https://docs.vapi.ai/cli/webhook).
Source:
- [Webhook Testing & Event Types](https://docs.vapi.ai/cli/webhook)julian
10/02/2025, 8:21 PMjulian
10/06/2025, 4:42 PMjulian
10/06/2025, 4:43 PMChiranjeet Mishra
10/06/2025, 8:00 PMjulian
10/07/2025, 3:23 PMOperations📟
10/20/2025, 12:45 AMjulian
10/31/2025, 3:59 PMOperations📟
10/31/2025, 4:17 PMansi
[2;31m https://api.vapi.ai/call/phone
instead of
ansi
[2;32m https://api.vapi.ai/call/Chiranjeet Mishra
11/03/2025, 9:45 PM