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

# settings.onboardingValueChanged

> Emitted when an onboarding value changes.

## Event Properties

| Field          | Value                               |
| -------------- | ----------------------------------- |
| `event`        | `"settings.onboardingValueChanged"` |
| `confidential` | `boolean`                           |
| `payload`      | `object`                            |

<Tabs>
  <Tab title="Public Payload">
    | Field          | Type     | Description                |
    | -------------- | -------- | -------------------------- |
    | `settingName`  | `string` | Which setting was modified |
    | `settingValue` | `string` | New value for the setting  |

    #### Example

    ```json theme={null}
    {
      "event": "settings.onboardingValueChanged",
      "confidential": false,
      "payload": {
        "settingName": "language",
        "settingValue": "en"
      }
    }
    ```
  </Tab>

  <Tab title="Confidential Payload">
    | Field          | Type     | Description                |
    | -------------- | -------- | -------------------------- |
    | `settingName`  | `string` | Which setting was modified |
    | `settingValue` | `string` | New value for the setting  |

    #### Example

    ```json theme={null}
    {
      "event": "settings.onboardingValueChanged",
      "confidential": true,
      "payload": {
        "settingName": "language",
        "settingValue": "en"
      }
    }
    ```
  </Tab>
</Tabs>
