Campaigns not sending - remaining in Scheduled sta...
# support
h
Hello, I'm having troubel sending out campaigns, I am clicking the send now, but the campaigns are staying at scheduled and not sending
v
Try updating the campaign status via the API to see if it triggers sending. You can use the following cURL command to update the campaign (replace
<id>
and
<token>
with your campaign ID and auth token):
Copy code
bash
curl -X PATCH https://api.vapi.ai/campaign/<id> \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{"status":"in-progress"}'
If the issue persists, check the campaign details with a GET request or contact support for further assistance. [See API reference](https://docs.vapi.ai/api-reference/campaigns/campaign-controller-update?explorer=true) Source: - [Update Campaign Vapi API Reference](https://docs.vapi.ai/api-reference/campaigns/campaign-controller-update?explorer=true)
h
no
2 Views