> ## 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.

# Pause Campaign

> Temporarily pause an active campaign

## Pause Campaign

Temporarily pause a running campaign. Can be resumed later with `/resume`.

***

## Path Parameters

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

***

## Example Request

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

***

## Response `200 OK`

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

***

## Behavior

* Ongoing calls complete normally
* No new calls are initiated
* Campaign can be resumed with `/resume`
* All progress is preserved
