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

# template.copied

> Emitted when a template is copied.

## Event Properties

| Field          | Value               |
| -------------- | ------------------- |
| `event`        | `"template.copied"` |
| `confidential` | `boolean`           |
| `payload`      | `object`            |

<Tabs>
  <Tab title="Public Payload">
    | Field      | Type     | Description                       |
    | ---------- | -------- | --------------------------------- |
    | `id`       | `string` | Identifier of the copied template |
    | `title`    | `string` | Name of the copied template       |
    | `language` | `string` | Language of the copied template   |

    #### Example

    ```json theme={null}
    {
      "event": "template.copied",
      "confidential": false,
      "payload": {
        "id": "template_2",
        "title": "SOAP Copy",
        "language": "en"
      }
    }
    ```
  </Tab>

  <Tab title="Confidential Payload">
    | Field      | Type     | Description                       |
    | ---------- | -------- | --------------------------------- |
    | `id`       | `string` | Identifier of the copied template |
    | `title`    | `string` | Name of the copied template       |
    | `language` | `string` | Language of the copied template   |

    #### Example

    ```json theme={null}
    {
      "event": "template.copied",
      "confidential": true,
      "payload": {
        "id": "template_2",
        "title": "SOAP Copy",
        "language": "en"
      }
    }
    ```
  </Tab>
</Tabs>
