The GUI isn't letting me cancel a scheduled call
# support
e
I have a scheduled call for tomorrow and it was initialized wrong so I created a new one. Now I want to delete the old one but every time I click delete the whole page reloads and it signs me out, then when I get back in it hasn't deleted the call... Any help would be amazing!
v
Sorry to hear about the trouble with deleting your scheduled call via the GUI. As an alternative, you can try deleting the call using the API with a DELETE request to
https://api.vapi.ai/call/:id
(replace
:id
with your call's ID) and your authorization token ([API docs](https://docs.vapi.ai/api-reference/calls/delete)). Quick question: Are you able to delete other calls via the GUI, or does this issue happen with every call you try to remove? Sources: - [Vapi API Reference: Delete Call](https://docs.vapi.ai/api-reference/calls/delete) - [Vapi Support Options](https://docs.vapi.ai/support)
e
I tried this with no luck... Is it even possible to cancel a scheduled call? Maybe I'll try updating the call?
k
Yes, you can cancel a scheduled call using DELETE /call/:callId, or update it with PATCH /calls/:callId if you prefer to modify instead..