Bank Statement SDK
VANILLA JAVASCRIPT
You can implement our javascript SDK for bank statement into your project by using the sample script below.
<script src="https://js.myidentitypass.com/v1/inline/bank.js"></script>// import identitypass JS library
<script>
function initiateBank() {
IdentityPassBankWidget.initiate({
merchant_key: "", // your public key
callback: function (response) {
if(response.status =='success'){
// please note that the response will also be sent to your webhook URL.
}
else{
// process error message here
}
},
})
}
</script>
Updated 12 months ago