Verification Events

EventDescription
onVerifyCancelWhen user has canceled the verification.
onVerifyCompleteWhen user has successfully completed the verification process and has been verified.
onVerifyDoneWhen the user has completed the verification and closed the verification widget.
onVerifyErrorIf an error occurs. See Error Codes section.

Sample code usage:

privo.verify.addEventHandlers({
    onVerify: handleVerifyEvent,
    onVerifyDone: handleDoneEvent,
    onVerifyCancel: handleCancelEvent,
    onVerifyError: handleErrorEvent
});