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

# Resume Campaign

> Resume a paused campaign

## Resume Campaign

Resume a paused campaign and return it to `active` status.

***

## Path Parameters

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

***

## Example Request

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

***

## Response `200 OK`

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

***

## Use Cases

* Resume after manual pause
* Resume after editing campaign configuration
* Resume after temporary business hours closure
* Resume after resolving an issue

<Note>
  After updating a campaign via `PUT /campaigns/{id}`, you must call `/resume` to restart it.
</Note>
