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

# Create Campaign

`POST /v1/campaigns`

Create a new email campaign from a generated email. Use emailId for the exact generated email, especially series slots. Requires API key with campaign:write.

## Request body

- CreateCampaignRequest
  - `projectId` string, required — Project ID
  - `name` string, required — Campaign name
  - `conversationId` string, required — Conversation ID that owns the generated email
  - `emailId` string — Generated email ID from result.emails[].emailId. Recommended for series slots.
  - `subject` string — Email subject (auto-populated from conversation if omitted)
  - `preheaderText` string — Preheader text
  - `from` string, email, required — Sender email address
  - `fromName` string, required — Sender display name
  - `replyTo` string, email — Reply-to address
  - `recipientType` 'audience' | 'tag', required — Send to a segment (audience) or tag
  - `recipientId` string, required — Segment or tag ID
  - `topicId` string — Topic ID for preference filtering
  - `providerType` 'ses' | 'resend' | 'sendgrid' | 'mailgun' | 'migma' — Email provider (default: migma)
  - `variables` object — Template variables

## Response `200`

Campaign created

- ApiResponseCampaign
  - `success` boolean, required
  - `data` object, nullable
    - `id` string
    - `projectId` string
    - `name` string
    - `conversationId` string
    - `emailId` string, nullable — Generated email ID when the campaign was created from a specific email.
    - `subject` string
    - `preheaderText` string, nullable
    - `from` string, email
    - `fromName` string
    - `replyTo` string, nullable
    - `recipientType` 'audience' | 'tag'
    - `recipientId` string
    - `topicId` string, nullable
    - `estimatedRecipients` integer, nullable
    - `providerType` 'ses' | 'resend' | 'sendgrid' | 'mailgun' | 'migma'
    - `variables` object, nullable
    - `status` 'draft' | 'pending_review' | 'scheduled' | 'sending' | 'throttled' | 'sent' | 'failed' | 'cancelled'
    - `scheduledAt` string, date-time, nullable
    - `scheduledTimezone` string, nullable
    - `batchId` string, nullable
    - `sentAt` string, date-time, nullable
    - `completedAt` string, date-time, nullable
    - `error` string, nullable
    - `triggeredBy` 'manual' | 'api' | 'automation'
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
  - `error` string, nullable

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden - Missing required permissions or access denied

---

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