Event Properties
| Field | Value |
|---|---|
event | "embedded.interactionOptionsWarning" |
confidential | boolean |
payload | object |
- Public Payload
- Confidential Payload
| Field | Type | Description |
|---|---|---|
code | "INTERACTION_OPTIONS_VALUES_SKIPPED" | Stable warning code for integrators |
message | string | Human-readable warning summary |
skippedValues | { spokenLanguage: { fallback: string[]; options: string[]; }; templates: { unsupportedSources: ("standard" | "project")[]; standard: { include: { regions: string[]; families: string[]; }; }; project: { include: { ...; }; exclude: { ...; }; }; }; documents: { ...; }; } | Interaction option values ignored while applying setInteractionOptions |
skippedValues object properties
skippedValues object properties
| Field | Type | Description |
|---|---|---|
spokenLanguage | object | - |
templates | object | - |
documents | object | - |
Example
{
"event": "embedded.interactionOptionsWarning",
"confidential": false,
"payload": {
"code": "INTERACTION_OPTIONS_VALUES_SKIPPED",
"message": "Some interaction option values were skipped because they are invalid, unsupported, or would leave no templates available.",
"skippedValues": {
"spokenLanguage": {
"fallback": [],
"options": []
},
"templates": {
"unsupportedSources": [
"standard",
"project"
],
"standard": {
"include": {
"regions": [
"ZZ"
],
"families": [
"unknown-family"
]
}
},
"project": {
"include": {
"ids": [
"not-a-uuid"
]
},
"exclude": {
"ids": []
}
}
},
"documents": {
"allowedLanguages": [
"oo"
]
}
}
}
}
| Field | Type | Description |
|---|---|---|
code | "INTERACTION_OPTIONS_VALUES_SKIPPED" | Stable warning code for integrators |
message | string | Human-readable warning summary |
skippedValues | { spokenLanguage: { fallback: string[]; options: string[]; }; templates: { unsupportedSources: ("standard" | "project")[]; standard: { include: { regions: string[]; families: string[]; }; }; project: { include: { ...; }; exclude: { ...; }; }; }; documents: { ...; }; } | Interaction option values ignored while applying setInteractionOptions |
skippedValues object properties
skippedValues object properties
| Field | Type | Description |
|---|---|---|
spokenLanguage | object | - |
templates | object | - |
documents | object | - |
Example
{
"event": "embedded.interactionOptionsWarning",
"confidential": true,
"payload": {
"code": "INTERACTION_OPTIONS_VALUES_SKIPPED",
"message": "Some interaction option values were skipped because they are invalid, unsupported, or would leave no templates available.",
"skippedValues": {
"spokenLanguage": {
"fallback": [],
"options": []
},
"templates": {
"unsupportedSources": [
"standard",
"project"
],
"standard": {
"include": {
"regions": [
"ZZ"
],
"families": [
"unknown-family"
]
}
},
"project": {
"include": {
"ids": [
"not-a-uuid"
]
},
"exclude": {
"ids": []
}
}
},
"documents": {
"allowedLanguages": [
"oo"
]
}
}
}
}