Verification Flow

To understand how to integrate our solution, it is good to know how it works.

1. Verify with Synaps

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.

You can whether integrate our solution using Web SDK, API or Mobile.

WebAPIMobile

2. Onboarding process

Then the user can complete their workflow directly on your app.

3. Finish

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 completed
Synaps.on('finish', () => {
    // Pull user data
});

Last updated