> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vaanivoice.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Stop Campaign

> Stop campaign at end of current day (soft stop)

## Stop Campaign

Gracefully stop a campaign at the end of the current day's calling window.

***

## Path Parameters

<ParamField path="campaign_id" type="string" required>
  UUID of the campaign to stop
</ParamField>

***

## Example Request

```bash theme={null}
curl -X POST "https://api.vaani.ai/api/campaigns/abc-123-xyz/stop" \
  -H "X-API-Key: vaani_abc123..."
```

***

## Response `200 OK`

```json theme={null}
{
  "id": "abc-123-xyz",
  "campaign_name": "Summer Promo 2024",
  "campaign_status": "completed",
  "updated_at": "2026-07-01T14:45:00Z"
}
```

***

## Behavior

* Campaign continues until end of current day's window
* All pending calls for today are completed
* Status transitions to `completed`
* Cannot be resumed after stopping

<Info>
  Use `/pause` if you need to temporarily stop and resume later.
  Use `/stop` for graceful completion.
  Use `/cancel` for immediate termination.
</Info>
