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

# Clone Survey Template

> Create a copy of an existing survey template

# Clone Survey Template

Creates a duplicate of an existing template with `" (copy)"` appended to the name. The clone is never set as default, regardless of the original's status.

## Request

### Headers

<ParamField header="x-api-key" type="string" required>
  Your API key for authentication
</ParamField>

<ParamField header="x-organization-id" type="string" required>
  Your organization UUID
</ParamField>

### Path Parameters

<ParamField path="template_id" type="string" required>
  The UUID of the template to clone
</ParamField>

## Response

Returns the newly created template object.

<ResponseExample>
  ```json 201 theme={"theme":{"light":"github-light","dark":"github-dark"}}
  {
    "id": "880e8400-e29b-41d4-a716-446655440000",
    "name": "Standard Commuting Survey (copy)",
    "is_default": false,
    "status": "active",
    "version": 1,
    "config": { "..." : "..." },
    "created_at": "2024-07-15T12:00:00Z"
  }
  ```
</ResponseExample>
