Drop calls
# support
r
Hello, I would like to know whether it is possible to drop calls that are currently in progress. Could someone please answer this question for me?
v
Yes, you can drop (end) calls that are currently in progress by adding the
endCall
tool to your assistant's configuration.
Here’s how to enable this feature in your assistant’s
tools
array:
Copy code
json
"tools": [
  { "type": "endCall" }
]
Once configured, your assistant can use the
endCall
function to terminate calls as needed. For more details, see the [Vapi documentation](https://docs.vapi.ai/tools/default-tools). Source: - [Default Tools – Vapi Documentation](https://docs.vapi.ai/tools/default-tools)
r
No. I want to know whether there is any function on the platform or via API that would let me take a call that is already in progress and terminate it immediately, just cut it off mid-call so I can start another one.
c
Hey, when a call is active you can send an
end-call
control message via the WebSocket control URL to terminate it instantly
o
ask vapi docs ai
c