NeuroID Integration
Alloy's SDK supports NeuroID's Behavioral Risk product
You don't need to do any separate NeuroID integrations outside of integrating the Alloy SDK to get up and running with NeuroID!
Set Up
First, install the web SDK npm package 1.x:
yarn add @alloyidentity/web-sdk
or
npm install @alloyidentity/web-sdk
Journey Integration
- Set up your NeuroID credentials in your Alloy Dashboard in the Settings > Services page.
- Navigate to Settings > SDK page on your Alloy Dashboard.
- Enable NeuroID via toggle. Supply the Site ID when prompted. The Site ID should begin with
form_
and can be obtained from the NeuroID dashboard. - Run
alloy.init()
to initialize the SDK on each page you’d like NeuroID to run on. - Capture the Neuro User ID and Site ID from the
neuroUserId
andneuroSiteId
fields in thealloy.init()
callback response. When you're ready to submit your Journey Application, include the User ID and Site ID values in your POST /applications request using theneuro_userid
andsite_id
API payload fields.
Workflow Integration
- Set up your NeuroID credentials in your Alloy Dashboard in the Settings > Services page.
- Navigate to Settings > SDK page on your Alloy Dashboard.
- Enable NeuroID via toggle. Supply the Site ID when prompted. The Site ID should begin with
form_
and can be obtained from the NeuroID dashboard. - Run
alloy.init()
to initialize the SDK on each page you’d like NeuroID to run on. - Capture the Neuro User ID and Site ID from the
neuroUserId
andneuroSiteId
fields in thealloy.init()
callback response. When you're ready to submit your Evaluation, include the User ID and Site ID values in your POST /evaluations request using theneuro_userid
andsite_id
API payload fields.
Updated 2 months ago