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

# POST Resume a campaign

> Resume a paused campaign.

## Endpoint

```txt theme={null}
POST /api/v1/campaigns/{id}/resume
```

## Parameters path

| Nom  | Type | Required | Description |
| ---- | ---- | -------- | ----------- |
| `id` | UUID | yes      | Campaign ID |

## Success response `200`

```json theme={null}
{
  "data": {
    "id": "cmp_uuid",
    "userId": "user_uuid",
    "instanceId": "inst_uuid",
    "name": "Promo Black Friday",
    "templateId": null,
    "type": "text",
    "body": "Hello, découvrez notre promo.",
    "mediaUrl": null,
    "schedule": "2026-04-02T10:00:00.000Z",
    "repeat": "noe",
    "status": "running",
    "recipients": { "type": "all" },
    "templateVariables": null,
    "safety": {
      "decision": "warn",
      "riskLevel": "medium",
      "state": "warming",
      "score": 56,
      "reasons": [
        "This instance is still warming up and campaign pacing should stay gradual."
      ],
      "recommendations": [
        "Start with previously engaged contacts before scaling volume."
      ]
    },
    "createdAt": "2026-04-01T17:00:00.000Z",
    "updatedAt": "2026-04-02T10:06:00.000Z"
  }
}
```

<Note>
  Le resume peut retourner de la guidance safety. En V1, elle n'empêche pas la reprise.
</Note>
