nicko
12/01/2025, 9:25 PMVapi Support Bot
12/01/2025, 9:26 PMended using the API. This will delete all scheduled calls immediately. Here’s a code example:
bash
curl -X PATCH https://api.vapi.ai/campaign/<your_campaign_id> \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{"status": "ended"}'
This action guarantees no queued calls will be made later, per the official documentation.
Source: [Vapi Campaign Update API](https://docs.vapi.ai/api-reference/campaigns/campaign-controller-update)nicko
12/01/2025, 9:29 PMVapi Support Bot
12/01/2025, 9:30 PMnicko
12/01/2025, 9:31 PMVapi Support Bot
12/01/2025, 9:32 PMnicko
12/01/2025, 9:33 PMnicko
12/01/2025, 9:37 PMChiranjeet Mishra
12/03/2025, 3:04 PMended using the API. This will immediately delete all scheduled calls. Here's how you can do this:
bash
curl -X PATCH https://api.vapi.ai/campaign/1ef156be-c5d9-4bf6-8034-e506942efdf1 \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{"status": "ended"}'
This command will prevent any queued calls from being made later. For more information, check the [Vapi Campaign Update API](https://docs.vapi.ai/api-reference/campaigns/campaign-controller-update). If you need further assistance, consider booking a support call through Vapi's official channels.nicko
12/03/2025, 4:36 PMVapi Support Bot
12/03/2025, 4:37 PMbash
curl -X DELETE https://api.vapi.ai/campaign/1ef156be-c5d9-4bf6-8034-e506942efdf1 \
-H "Authorization: Bearer <token>"
This action is recommended when the campaign is stuck and cannot be updated further.
Source: [Vapi Campaign Delete API](https://docs.vapi.ai/api-reference/campaigns/campaign-controller-remove)Vapi Support Bot
12/03/2025, 4:44 PM