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

> Emitted when an interaction is permanently deleted.

## Event Properties

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

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

    #### Example

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

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

    #### Example

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