---
title: "Clone a sent campaign at part of its original audience"
method: POST
path: "/campaigns/{id}/resend"
tags: ["Campaigns"]
---

# Clone a sent campaign at part of its original audience

`POST /campaigns/{id}/resend`

Creates a new draft with the original's content, sender, and exclusions, aimed at the chosen slice of the original audience. Omit scheduled_at to leave it as a draft. The source campaign's lists are deliberately not carried over — the engagement segment is the audience.

## Request body

- object
  - `audience` 'non_openers' | 'openers' | 'clickers', required
  - `subject` string — Optional new subject line; defaults to the original's
  - `title` string — Optional internal name; defaults to "Resend: <original title>"
  - `scheduled_at` string, date-time — Optional send time; omit to leave the resend as a draft

## Response `201`

Draft created

- Campaign
  - `id` integer
  - `title` string, required
  - `subject` string, required
  - `preview_text` string, nullable — Inbox preview snippet shown beneath the subject line in most email clients.
  - `html` string, required
  - `from_name` string, required
  - `from_email` string, email, required
  - `scheduled_at` string, date-time, nullable
  - `sent_at` string, date-time, nullable
  - `timezone` string
  - `created_at` string, date-time
  - `updated_at` string, date-time

## Other responses

- `403` — Forbidden. Most often an ownership/authorization failure (Laravel's default `{"message": "..."}` shape). If the account is restricted by SendFox, the response instead carries the structured `account_restricted` body with a link to the account status page.
- `404` — Campaign not found
- `422` — The campaign has not been sent, or scheduling is unavailable

---

[API](https://skmtc.net/sendfox/apis/sendfox-api.md) · [All operations](https://skmtc.net/sendfox/apis/sendfox-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sendfox/sendfox-api/revisions/c5728da3037f/schema)
