🕸️Web Widget
Add these lines to your website code
<script src="https://corp.vouch.social/sdk/vouch-web-sdk.js"></script>
<link rel="stylesheet" href="https://corp.vouch.social/sdk/css/modal.css">
The JS widget for your website with your AppToken & CompanyName :
const vouchSDK = new VouchWebSDK({
"token": <AppToken>,
"company": <CompanyName>
});
function submitForm(userPhone, userName) {
vouchSDK.checkCustomerConnections({
"phone": userPhone,
"name": userName
}).catch(error => console.error('Error checking connections:', error));
}
Last updated