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.
Event Properties
| Field | Value |
|---|
event | "embedded.appConfigured" |
confidential | boolean |
payload | object |
Public Payload
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
{
"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
}
}
| 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
{
"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
}
}