How do I end a call?
# support
x
Title. Especially in the dashboard. I cannot find a button to end an ongoing call anywhere. Bizarre.
v
Hi there! đŸ‘‹ I understand you're looking for a way to end an ongoing call from the Vapi dashboard. Unfortunately, I couldn't find information about a specific button in the dashboard to end calls. However, I can help with alternative ways to end calls in Vapi. According to the [documentation](https://docs.vapi.ai/quickstart/dashboard), there's currently a limitation where "Your assistant won't yet be able to hang-up the phone at the end of the call." This suggests that automatic call termination by the assistant has some limitations. Instead, you can end calls using these methods: 1. Use the
EndCall
function by setting
endCallFunctionEnabled
to true in your configuration 2. Implement idleMessages to trigger the endOfCall if the caller doesn't say anything 3. Programmatically end a call by sending an
end-call
message type within
ClientInboundMessage
The [API endpoints](https://docs.vapi.ai/api-reference/test-suites/test-suite-controller-create) might also be helpful, as there are endpoints for call management including: - `DELDelete Call Data`:
/api-reference/calls/delete
- `PATCHUpdate Call`:
/api-reference/calls/update
Is there anything else you'd like to know about managing calls in Vapi? Sources: - [Vapi Documentation](https://docs.vapi.ai/quickstart/dashboard) - [API Reference](https://docs.vapi.ai/api-reference/test-suites/test-suite-controller-create)
s
checking if this is resolved/solved for you?
x
No, I just end it in my twilio call menu
I have another question: I'm trying to receive webhooks but there is no trace of them on my server, and in the dashboard, it doesn't say where they are getting sent. Is it possible that it's using the last url I used, but showing the updated url?
Every webhook gets this: Your server rejected
status-update
webhook. Error: Request failed with status code 404 And I literally don't see any logs on my server
s
It's possible. You can just generate a new webhook URL in make, drop that into your Vapi integration settings, and then test a call. That’ll help confirm if the webhook is firing correctly and whether data is reaching Make. If it works, then it was likely still using the old URL under the hood.
3 Views