Additional Information Configuration

Overview

Additional Information configuration can be used to collect key information from customers. Client/Agent can set standard question predefined by Fize or can create custom question as per the requirement.

PropertyTypeInline Mode SupportOverlay Mode Support
additional_informationObjectYesYes

Object Properties

PropertyType
enabledBoolean
standardenum
customarray
<html lang="en">
<head>
<script src="https://cdn.getfize.com/sdk/v1.0/getfize.js"></script>
</head>
<body>
<script>
       let handler = FIZE.configure({
         client_id: "FIZE_PROVIDED_CLIENT_ID",
         display_mode: "overlay",
additional_information: {
          enabled: true,
          standard: ["education", "driving_license"],
          custom: [
            {
              question: "Gender",
              type: "select",
              options: ["Male", "Female"],
              placeholder: "Select your gender",
            },
            {
              question: "What Are the Types of Insurance You Need?",
              type: "multiselect",
              options: ["Home", "Life", "Health"],
              placeholder: "Select your gender",
            },
          ],
        },
         
       });   
   </script>
</body>
</html>