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

# account.loggedOut

> Emitted when a user logs out.

## Event Properties

| Field          | Value                 |
| -------------- | --------------------- |
| `event`        | `"account.loggedOut"` |
| `confidential` | `boolean`             |
| `payload`      | `object`              |

<Tabs>
  <Tab title="Public Payload">
    | Field    | Type     | Description               |
    | -------- | -------- | ------------------------- |
    | `reason` | `string` | What triggered the logout |

    #### Example

    ```json theme={null}
    {
      "event": "account.loggedOut",
      "confidential": false,
      "payload": {
        "reason": "sign-out"
      }
    }
    ```
  </Tab>

  <Tab title="Confidential Payload">
    | Field    | Type     | Description               |
    | -------- | -------- | ------------------------- |
    | `reason` | `string` | What triggered the logout |

    #### Example

    ```json theme={null}
    {
      "event": "account.loggedOut",
      "confidential": true,
      "payload": {
        "reason": "sign-out"
      }
    }
    ```
  </Tab>
</Tabs>
