logo
CampaignsDuplicate campaign
Campaigns

Duplicate campaign

Creates a copy of the campaign with "(Copy)" appended to the name. The duplicate is created in "draft" status with the same sequence, schedule, and settings. Leads are NOT copied.

curl -X POST "https://api.sendkit.ai/v1/campaigns/example_string/duplicate" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "success": true,
  "data": {
    "_id": "665c3d4e5f6a7b8c9d0e1f2a",
    "name": "Q1 Outreach Campaign (Copy)",
    "status": "draft",
    "mailboxes": [
      "665b1c2d3e4f5a6b7c8d9e0f"
    ],
    "sequence": [
      {
        "type": "email",
        "name": "Initial Email",
        "order": 0,
        "subject": "Quick question, {{firstName}}",
        "body": "<p>Hi {{firstName}},</p>"
      }
    ],
    "sendingSchedule": {
      "timezone": "America/New_York",
      "startTime": "09:00",
      "endTime": "17:00",
      "workingDays": [
        1,
        2,
        3,
        4,
        5
      ]
    },
    "trackOpens": true,
    "trackClicks": true,
    "stopOnReply": true,
    "stats": {
      "sent": 0,
      "delivered": 0,
      "opened": 0,
      "clicked": 0,
      "replied": 0,
      "bounced": 0,
      "unsubscribed": 0
    },
    "createdAt": "2025-06-20T14:00:00.000Z",
    "updatedAt": "2025-06-20T14:00:00.000Z"
  }
}
POST
/v1/campaigns/{id}/duplicate
POST
API Key (header: X-Api-Key)
X-Api-Keystring
Required

Platform API key (sk_user_...) or Workspace API key (sk_...)

Platform API key (sk_user_...) or Workspace API key (sk_...)
Bearer Token
Bearer Tokenstring
Required

API key as Bearer token

API key as Bearer token
Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-Api-Keystring
Required

API Key for authentication. Platform API key (sk_user_...) or Workspace API key (sk_...)

header
Authorizationstring
Required

Bearer token. API key as Bearer token

Path Parameters

idstring
Required

Resource ID

Responses