Skip to main content
DELETE
/
api
/
v1
/
campaigns
/
{campaign_id}
/
sequences
/
{sequence_id}
curl -X DELETE "https://api.foxreach.io/api/v1/campaigns/cmp_abc123/sequences/seq_002" \
  -H "X-API-Key: otr_your_key"
{
  "data": {
    "id": "seq_002",
    "deleted": true
  }
}

Path Parameters

campaign_id
string
required
The unique identifier of the campaign.
sequence_id
string
required
The unique identifier of the sequence step.

Response

Returns a confirmation of deletion.
curl -X DELETE "https://api.foxreach.io/api/v1/campaigns/cmp_abc123/sequences/seq_002" \
  -H "X-API-Key: otr_your_key"
{
  "data": {
    "id": "seq_002",
    "deleted": true
  }
}

Errors

StatusDescription
400Campaign is active — pause it first
404Sequence step not found
404Campaign not found