Skip to content

Using the survey's

This module provides the ability to configure two types of surveys:

  • Modal survey
  • Inline survey

The modal survey can be configured by using setupHelloCustomerModalSurvey:

javascript
setupHelloCustomerModalSurvey({
  tenantId: "",
  touchPointId: "",
  language: "NL",
  metadata: {},
  isPreview: true,
});

The inline survey can be configured by using setupHelloCustomerInlineSurvey:

javascript
setupHelloCustomerInlineSurvey({
  tenantId: "",
  touchPointId: "",
  language: "NL",
  isPreview: true,
  metadata: {},
  elementSelector: "#inlineSurvey",
});