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 |
ui | Record<string, boolean> | undefined | App-level UI toggles |
companionApp | { enabled: boolean; } | undefined | Companion app configuration |
locale | Record<string, string | null | undefined> | undefined | Language and localization settings |
overrideCount | number | undefined | Count of configuration properties provided |
companionApp object properties
companionApp object properties
| Field | Type | Description |
|---|---|---|
enabled | boolean | - |
Example
{
"event": "embedded.appConfigured",
"confidential": false,
"payload": {
"appearance": {
"primaryColor": "#3366FF"
},
"ui": {
"interactionTitle": true,
"aiChat": true,
"navigation": false,
"documentFeedback": true
},
"companionApp": {
"enabled": false
},
"locale": {
"interfaceLanguage": "en",
"dictationLanguage": "en"
},
"overrideCount": 2
}
}
| Field | Type | Description |
|---|---|---|
appearance | Record<string, string | null> | undefined | Visual customization options |
ui | Record<string, boolean> | undefined | App-level UI toggles |
companionApp | { enabled: boolean; } | undefined | Companion app configuration |
locale | Record<string, string | null | undefined> | undefined | Language and localization settings |
overrideCount | number | undefined | Count of configuration properties provided |
companionApp object properties
companionApp object properties
| Field | Type | Description |
|---|---|---|
enabled | boolean | - |
Example
{
"event": "embedded.appConfigured",
"confidential": true,
"payload": {
"appearance": {
"primaryColor": "#3366FF"
},
"ui": {
"interactionTitle": true,
"aiChat": true,
"navigation": false,
"documentFeedback": true
},
"companionApp": {
"enabled": false
},
"locale": {
"interfaceLanguage": "en",
"dictationLanguage": "en"
},
"overrideCount": 2
}
}