ThreatMetrix Integration
Alloy's SDK supports LexisNexis ThreatMetrix product.
Set Up
First, install the web SDK npm package version 2.2.5: (if you already have the SDK downloaded, make sure to upgrade to version 2.2.5)
yarn add @alloyidentity/web-sdk
or
npm install @alloyidentity/web-sdk
Journey Integration
- Set up your ThreatMetrix credentials in your Alloy Dashboard in the Settings > Services page
- Navigate to Settings > SDK page on your Alloy Dashboard
- Enable ThreatMetrix via toggle
- Run
alloy.init()
to initialize the SDK on each page you’d like ThreatMetrix to run on. - Capture the Session ID from the
threatmetrixSessionId
field in thealloy.init()
callback response. When you're ready to submit your Journey Application, include the Session ID in your POST /applications request in thethreatmetrix_session_id
entity payload field.
Workflow Integration
- Set up your Threatmetrix credentials in your Alloy Dashboard in the Settings > Services page
- Navigate to Settings > SDK page on your Alloy Dashboard
- Enable Threatmetrix via toggle
- Run
alloy.init()
to initialize the SDK you’d like ThreatMetrix to run on. - Capture the Session ID from the
threatmetrixSessionId
field in thealloy.init()
callback response. When you're ready to submit your Evaluation, include the Session ID in your POST /evaluations request in thethreatmetrix_session_id
payload field.
Updated 2 months ago