> ## Documentation Index
> Fetch the complete documentation index at: https://reach-owl.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# DELETE /api/v1/campaigns/{id}, Delete a Campaign

> Permanently deletes a campaign by ID. Returns 204 No Content on success. This action cannot be undone.

Remove a campaign permanently from your account. A successful deletion returns 204 No Content and no response body. This operation cannot be reversed.

## Path parameters

<ParamField path="campaign_id" type="integer" required>
  The unique ID of the campaign to delete.
</ParamField>

## Example request

```bash theme={null}
curl -X DELETE "https://reachowl.com/api/v1/campaigns/101" \
  -H "Authorization: Bearer <token>"
```

## Example response

```text theme={null}
HTTP/1.1 204 No Content
```

<Warning>
  Deleting a campaign is permanent. There is no way to restore a deleted campaign, so verify the ID before calling this endpoint.
</Warning>
