v1

latestSwagger 2.0Private2026-08-04128286690.5 KB
Email Campaigns

POST a Resend to Non-openers Campaign Activity

Use this POST method to resend a primary campaign activity to contacts that did not open a campaign activity that has a current status of Draft, Scheduled, or Done. You can only create one resend activity per email campaign.

After an email campaign activity is sent to contacts, Constant Contact waits the specified number of delay_days or delay_minutes (properties are mutually exclusive) before resending to non-openers. If you set both delay_days or delay_minutes, delay_minutes is ignored in the request. You can resend to non-openers a minimum of twelve hours (720 minutes) and a maximum of up to 10 days (or 10 x 1440 minutes) after the initial send date.

post/emails/activities/{campaign_activity_id}/non_opener_resends

Path parameters

campaign_activity_idstring required

The unique ID for the primary email campaign activity.

Request body

resend_subjectstring required

The subject line used when resending the email campaign activity.

delay_daysinteger

The number of days to wait before Constant Contact resends the email. Valid values include <code>1</code> to <code>10</code> days. This property is mutually exclusive with <code>delay_minutes</code>. This value is only returned in the response results if the resend activity was created with <code>delay_days</code> or the <code>delay_minutes</code> equal to an exact day value.

delay_minutesinteger

The number of minutes to wait before Constant Contact resends the email campaign activity. There are 1,440 minutes in a day. Valid values includes a minimum of <code>720</code> (12 hours) and a maximum of <code>14,400</code> minutes (10 days). This property is mutually exclusive with <code>delay_days</code>

Example request

{
  "resend_subject": "Our Big Sale is Coming Soon!",
  "delay_days": 3,
  "delay_minutes": 1000
}

Response

Request successful.

resend_subjectstring

The subject line for the resend email.

delay_daysinteger

The number of days to wait before Constant Contact resends the email. Valid values include <code>1</code> to <code>10</code> days. This property is mutually exclusive with <code>delay_minutes</code>. This value is only returned in the response results if the resend activity was created with <code>delay_days</code> or the <code>delay_minutes</code> equal to an exact day value.

delay_minutesinteger

The number of minutes to wait before Constant Contact resends the email. There are 1,440 minutes in a day. Valid values includes a minimum of <code>720</code> (12 hours) and a maximum of <code>14,400</code> minutes (10 days). This property is mutually exclusive with <code>delay_days</code>.

resend_datestring date-time

The system generated ISO-8601 format date and time that Constant Contact resent the email to non-openers.

resend_request_idstring

For scheduled or sent resend to non-opener emails, this property is a unique identifier for the resend. For draft email campaign resend activities, the value of this property is <code>DRAFT</code>.

Example response

{
  "resend_subject": "Our Big Sale is Coming Soon!",
  "delay_days": 7,
  "resend_request_id": "DRAFT"
}