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

# embedded.appConfigured

> Emitted when the embedded configure method is successfully called.

## Event Properties

| Field          | Value                      |
| -------------- | -------------------------- |
| `event`        | `"embedded.appConfigured"` |
| `confidential` | `boolean`                  |
| `payload`      | `object`                   |

<Tabs>
  <Tab title="Public Payload">
    | Field           | Type                                                       | Description                                |
    | --------------- | ---------------------------------------------------------- | ------------------------------------------ |
    | `appearance`    | `Record<string, string \| null> \| undefined`              | Visual customization options               |
    | `features`      | `Record<string, boolean> \| undefined`                     | Feature toggles for UI capabilities        |
    | `locale`        | `Record<string, string \| null \| undefined> \| undefined` | Language and localization settings         |
    | `overrideCount` | `number \| undefined`                                      | Count of configuration properties provided |

    #### Example

    ```json theme={null}
    {
      "event": "embedded.appConfigured",
      "confidential": false,
      "payload": {
        "appearance": {
          "primaryColor": "#3366FF"
        },
        "features": {
          "interactionTitle": true,
          "aiChat": true,
          "navigation": false,
          "documentFeedback": true,
          "virtualMode": true,
          "syncDocumentAction": false
        },
        "locale": {
          "interfaceLanguage": "en",
          "dictationLanguage": "en"
        },
        "overrideCount": 2
      }
    }
    ```
  </Tab>

  <Tab title="Confidential Payload">
    | Field           | Type                                                       | Description                                |
    | --------------- | ---------------------------------------------------------- | ------------------------------------------ |
    | `appearance`    | `Record<string, string \| null> \| undefined`              | Visual customization options               |
    | `features`      | `Record<string, boolean> \| undefined`                     | Feature toggles for UI capabilities        |
    | `locale`        | `Record<string, string \| null \| undefined> \| undefined` | Language and localization settings         |
    | `overrideCount` | `number \| undefined`                                      | Count of configuration properties provided |

    #### Example

    ```json theme={null}
    {
      "event": "embedded.appConfigured",
      "confidential": true,
      "payload": {
        "appearance": {
          "primaryColor": "#3366FF"
        },
        "features": {
          "interactionTitle": true,
          "aiChat": true,
          "navigation": false,
          "documentFeedback": true,
          "virtualMode": true,
          "syncDocumentAction": false
        },
        "locale": {
          "interfaceLanguage": "en",
          "dictationLanguage": "en"
        },
        "overrideCount": 2
      }
    }
    ```
  </Tab>
</Tabs>
