> ## 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.

# interaction.renamed

> Emitted when an interaction is renamed.

## Event Properties

| Field          | Value                   |
| -------------- | ----------------------- |
| `event`        | `"interaction.renamed"` |
| `confidential` | `boolean`               |
| `payload`      | `object`                |

<Tabs>
  <Tab title="Public Payload">
    | Field           | Type     | Description                   |
    | --------------- | -------- | ----------------------------- |
    | `interactionId` | `string` | ID of the renamed interaction |

    #### Example

    ```json theme={null}
    {
      "event": "interaction.renamed",
      "confidential": false,
      "payload": {
        "interactionId": "interaction_12345"
      }
    }
    ```
  </Tab>

  <Tab title="Confidential Payload">
    | Field           | Type     | Description                   |
    | --------------- | -------- | ----------------------------- |
    | `interactionId` | `string` | ID of the renamed interaction |
    | `title`         | `string` | New title for the interaction |

    #### Example

    ```json theme={null}
    {
      "event": "interaction.renamed",
      "confidential": true,
      "payload": {
        "interactionId": "interaction_12345",
        "title": "Follow-up visit"
      }
    }
    ```
  </Tab>
</Tabs>
