Skip to main content
POST
/
api
/
v1
/
campaigns
/
{campaignId}
/
resend-to-non-openers
Resend to Non-Openers
curl --request POST \
  --url https://api.sequenzy.com/api/v1/campaigns/{campaignId}/resend-to-non-openers \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "campaign": {
    "id": "camp_new123",
    "name": "April Launch (Non-openers)",
    "subject": "A quick update",
    "status": "draft",
    "labels": [],
    "emailId": "email_new123",
    "scheduledAt": null,
    "sentAt": null,
    "createdAt": "2026-06-11T10:00:00.000Z",
    "url": "https://sequenzy.com/dashboard/company/comp_abc123/campaign/camp_new123",
    "previewUrl": "https://sequenzy.com/dashboard/company/comp_abc123/campaign/camp_new123?step=review"
  },
  "estimatedNonOpenerCount": 842
}
Create a draft that resends a sent campaign to everyone in the same audience who didn’t open it. The draft copies the campaign email and reuses the original audience with a “didn’t open this campaign” rule added, so only people who haven’t opened it yet are targeted. This is only available 6 hours after the campaign finishes sending, which gives opens time to register. The response includes an estimate of how many subscribers haven’t opened the original. The new draft is not sent automatically - review it, then schedule or send it.

Request

campaignId
string
required
ID of the sent campaign to resend to non-openers.
curl -X POST "https://api.sequenzy.com/api/v1/campaigns/camp_abc123/resend-to-non-openers" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "campaign": {
    "id": "camp_new123",
    "name": "April Launch (Non-openers)",
    "subject": "A quick update",
    "status": "draft",
    "labels": [],
    "emailId": "email_new123",
    "scheduledAt": null,
    "sentAt": null,
    "createdAt": "2026-06-11T10:00:00.000Z",
    "url": "https://sequenzy.com/dashboard/company/comp_abc123/campaign/camp_new123",
    "previewUrl": "https://sequenzy.com/dashboard/company/comp_abc123/campaign/camp_new123?step=review"
  },
  "estimatedNonOpenerCount": 842
}