Delete campaign
Campaigns
Delete campaign
Permanently delete a campaign
Remove a campaign and all associated data including leads, sequences, and analytics. This action cannot be undone.
What Gets Deleted
- Campaign configuration and settings
- All uploaded lead data
- Email variants and sequences
- Campaign analytics and metrics
Important Notes
- Only DRAFT or PAUSED campaigns can be deleted
- Active campaigns must be paused first
- This is a destructive operation
Example Usage
import requests
campaign_id = "550e8400-e29b-41d4-a716-446655440000"
response = requests.delete(
f"https://api.coldsend.io/api/public/v1/campaigns/{campaign_id}",
headers={"X-API-Key": "your-api-key"}
)
DELETE
Delete campaign

