Skip to main content

Event Properties

FieldValue
event"embedded.interactionOptionsWarning"
confidentialboolean
payloadobject
FieldTypeDescription
code"INTERACTION_OPTIONS_VALUES_SKIPPED"Stable warning code for integrators
messagestringHuman-readable warning summary
skippedValues{ templates: { unsupportedSources: ("standard" | "project")[]; standard: { include: { regions: string[]; families: string[]; }; }; project: { include: { ids: string[]; }; exclude: { ids: string[]; }; }; }; documents: { ...; }; }Interaction option values ignored while applying setInteractionOptions
FieldTypeDescription
templatesobject-
documentsobject-

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": {
      "templates": {
        "unsupportedSources": [
          "standard",
          "project"
        ],
        "standard": {
          "include": {
            "regions": [
              "ZZ"
            ],
            "families": [
              "unknown-family"
            ]
          }
        },
        "project": {
          "include": {
            "ids": [
              "not-a-uuid"
            ]
          },
          "exclude": {
            "ids": []
          }
        }
      },
      "documents": {
        "allowedLanguages": [
          "oo"
        ]
      }
    }
  }
}