To understand how to integrate our solution, it is good to know how it works.
After integrating our solution, you should now have a Verify with Synaps button on your website. The users can click on it and it will open our onboarding process.
Then the user can complete their workflow directly on your app.
Once the user has finished their onboarding, the Synaps Client triggers an event called finish
let Synaps = new SynapsClient('session_id', 'service_type');​// When user onboarding is completedSynaps.on('finish', () => {// Pull user data});
​