> ## Documentation Index
> Fetch the complete documentation index at: https://docs.interactly.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Clone Campaign

> Clone a campaign configuration.

Creates a new campaign with the same configuration as the source.
Call records are copied in the background — use the `include_outcomes`, `exclude_outcomes`,
`include_status`, and `exclude_status` body fields to control which calls are cloned.
Returns immediately with the new `campaign_id`; call cloning continues asynchronously.



## OpenAPI

````yaml https://api-prod.interactly.ai/api-docs/sms/api.json post /campaigns/v1/campaigns/{campaign_id}/clone
openapi: 3.1.0
info:
  title: Interactly API
  description: API for building interactly.ai services
  version: 1.1.0
  contact:
    name: Interactly
    url: https://interactly.ai
    email: developers@interactly.ai
servers:
  - url: https://api-prod.interactly.ai
    description: API Server
security: []
paths:
  /campaigns/v1/campaigns/{campaign_id}/clone:
    post:
      tags:
        - Campaigns
      summary: Clone Campaign
      description: >-
        Clone a campaign configuration.


        Creates a new campaign with the same configuration as the source.

        Call records are copied in the background — use the `include_outcomes`,
        `exclude_outcomes`,

        `include_status`, and `exclude_status` body fields to control which
        calls are cloned.

        Returns immediately with the new `campaign_id`; call cloning continues
        asynchronously.
      operationId: >-
        campaigns_service_clone_campaign_by_id_v1_campaigns__campaign_id__clone_post
      parameters:
        - name: campaign_id
          in: path
          required: true
          schema:
            $ref: 4a3a8e23-281f-46f4-9bca-ce495b0e8a59
            description: Campaign configuration ID to clone
          description: Campaign configuration ID to clone
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: f5a41328-26ec-46f4-affd-e949979252a2
      responses:
        '200':
          description: >-
            Clone created — call records are cloned asynchronously in the
            background
          content:
            application/json:
              schema:
                $ref: 825fa37e-e3db-4fec-9bb2-9cdf7ef3875d
        '400':
          description: Bad request — invalid input or constraint violation
          content:
            application/json:
              schema:
                $ref: e525ba89-10eb-466b-acde-70640ae0f189
        '404':
          description: Requested resource not found
          content:
            application/json:
              schema:
                $ref: e525ba89-10eb-466b-acde-70640ae0f189
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: 61188eef-82a8-4002-94b5-80ed8ff45c7a
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: e525ba89-10eb-466b-acde-70640ae0f189
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: Bearer
      type: http
      description: >-
        Retrieve your API Key from [Dashboard API Keys
        Section](https://dashboard.interactly.ai/api-keys).

````