Data Sharing via Widget
Here is a guide to pre-filling authentic application question fields through our embedded widget
authenticWidget.init({
portal: {
url: "https://<tenant-name>.<environment>.authenticinsurance.com",
},
customerId: "unique_cid1",
prefillData: {
lead: {
email: "customer@email.com",
stateCodes: ["OH"],
},
responses: {
exposures: [{
exposureName: "business_location",
fieldValues: {
"ADDRESS": "100 street, UNIT 2, city, OH 33333, US",
}
}],
questions: {
"BUSINESS_LEGAL_NAME": "Customer Business Name",
"NAME": "Customer Full Name"
}
}
}
});Last updated