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.
Property | Type | Inline Mode Support | Overlay Mode Support |
---|---|---|---|
additional_information | Object | Yes | Yes |
Object Properties
<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>
Updated 5 months ago