Skip to main content
POST
/
api
/
v1
/
campaigns
/
{campaign_id}
/
resume
curl -X POST "https://api.foxreach.io/api/v1/campaigns/cmp_abc123/resume" \
  -H "X-API-Key: otr_your_key"
{
  "data": {
    "id": "cmp_abc123",
    "name": "Q1 Outreach",
    "status": "active",
    "startedAt": "2025-01-15T09:00:00",
    "..."
  }
}

Path Parameters

campaign_id
string
required
The unique identifier of the campaign.

Response

Returns the updated campaign object with status: "active".
curl -X POST "https://api.foxreach.io/api/v1/campaigns/cmp_abc123/resume" \
  -H "X-API-Key: otr_your_key"
{
  "data": {
    "id": "cmp_abc123",
    "name": "Q1 Outreach",
    "status": "active",
    "startedAt": "2025-01-15T09:00:00",
    "..."
  }
}

Errors

StatusDescription
400Campaign is not paused
404Campaign not found