---
title: "Create Campaign Endpoint"
method: POST
path: "/api/v1/remy/campaigns"
tags: ["remy", "remy"]
---

# Create Campaign Endpoint

`POST /api/v1/remy/campaigns`

Create a campaign for this user — always user-scoped; global campaigns aren't creatable through this endpoint yet.

## Request body

- CreateCampaignRequestDTO
  - `name` string, required
  - `brand_name` string, nullable
  - `product_name` string, nullable
  - `collab_type` 'Paid Reel' | 'Paid Story' | 'Paid Post' | 'Barter' | 'Affiliate'
  - `brief` string, nullable
  - `budget_min` number, required
  - `budget_max` number, required
  - `currency` 'INR' | 'USD' | 'GBP' | 'EUR'
  - `total_budget` number, nullable

## Response `200`

Successful Response

- CampaignDTO
  - `id` string, required
  - `scope` string, required
  - `user_id` string, nullable
  - `name` string, required
  - `brand_name` string, nullable
  - `product_name` string, nullable
  - `collab_type` string, nullable
  - `brief` string, nullable
  - `budget_min` number, nullable
  - `budget_max` number, nullable
  - `currency` string, nullable
  - `total_budget` number
  - `total_spent` number
  - `status` string, required
  - `created_at` string, date-time, nullable
  - `updated_at` string, date-time, nullable

## Other responses

- `422` — Validation Error

---

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