<button id="start-kyb">Verify your business</button>
<script>
document.getElementById("start-kyb").addEventListener("click", function () {
Vouchmark.open({
widgetId: "wgt_your_widget_id",
publicKey: "live_pk_your_public_key",
environment: "live",
applicant: {
email: "applicant@example.com",
businessName: "Acme Ltd",
registrationNumber: "RC123456",
},
onSuccess: function (applicant) {
console.log("Approved:", applicant.id, applicant.riskScore);
},
onAbandon: function () {
console.log("Applicant closed the widget");
},
onError: function (error) {
console.error("Widget error:", error.code, error.message);
},
});
});
</script>