---
title: "Create Campaign"
method: POST
path: "/campaigns"
tags: ["Campaigns"]
---

# Create Campaign

`POST /campaigns`

Creates a new campaign. Campaigns start in inactive/draft status.

## Request body

- CreateCampaignRequest
  - `name` string, required
  - `TeamId` string, uuid, required
  - `track_domain` string — Tracking domain for links (team default used if omitted)
  - `nodes` unknown[] — Initial sequence nodes (startNode, emailNode, waitNode, etc.)
    - unknown
  - `edges` unknown[] — Initial sequence edges (connections between nodes)
    - unknown
  - `is_draft` boolean
  - `timezone` string
  - `blacklistIfBounce` boolean
  - `blacklistIfUnsubscribe` boolean

## Response `201`

Campaign created

- CampaignResponse
  - `success` boolean
  - `request_id` string
  - `data` Campaign
    - `id` string, uuid
    - `name` string
    - `status` 'active' | 'inactive'
    - `disabled` boolean
    - `contact_count` integer — Total non-archived contacts (same as contact_metrics.total)
    - `contact_metrics` ContactMetrics — Contact lifecycle metrics for a campaign
      - `total` integer — Total non-archived contacts in campaign
      - `not_started` integer — Contacts that haven't begun the sequence yet (in queue for auto-refill)
      - `in_progress` integer — Contacts currently progressing through the sequence
      - `finished` integer — Contacts that completed the sequence
      - `paused` integer — Contacts currently paused
    - `team_id` string, uuid
    - `created_at` string, date-time
    - `updated_at` string, date-time

## Other responses

- `400` — Bad Request - Invalid parameters

---

[API](https://skmtc.dev/supersend/apis/supersend-api.md) · [All operations](https://skmtc.dev/supersend/apis/supersend-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/supersend/supersend-api/revisions/f0cbeaa12643/schema)
