Skip to main content
POST
/
api
/
v1
/
campaigns
/
{campaignId}
/
pause
Pause Campaign
curl --request POST \
  --url https://api.sequenzy.com/api/v1/campaigns/{campaignId}/pause \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "campaign": {
    "id": "camp_abc123",
    "name": "April Launch",
    "subject": "A quick update",
    "status": "paused",
    "labels": [],
    "scheduledAt": "2026-06-01T14:00:00.000Z",
    "sentAt": null,
    "createdAt": "2026-05-20T10:00:00.000Z",
    "url": "https://sequenzy.com/dashboard/company/comp_abc123/campaign/camp_abc123",
    "previewUrl": "https://sequenzy.com/dashboard/company/comp_abc123/campaign/camp_abc123?step=review"
  }
}
Pause a campaign in sending status. In-progress send workers stop, and remaining recipients are held until you resume or cancel the campaign.

Request

campaignId
string
required
Campaign ID.
This endpoint does not accept a request body.
curl -X POST "https://api.sequenzy.com/api/v1/campaigns/camp_abc123/pause" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "campaign": {
    "id": "camp_abc123",
    "name": "April Launch",
    "subject": "A quick update",
    "status": "paused",
    "labels": [],
    "scheduledAt": "2026-06-01T14:00:00.000Z",
    "sentAt": null,
    "createdAt": "2026-05-20T10:00:00.000Z",
    "url": "https://sequenzy.com/dashboard/company/comp_abc123/campaign/camp_abc123",
    "previewUrl": "https://sequenzy.com/dashboard/company/comp_abc123/campaign/camp_abc123?step=review"
  }
}