ID DataWeb - Attribute Exchange Network (AXN)

Learn how to integrate and use your existing ID DataWeb AXN Verify or ID DataWeb AXN Manage solutions with Strivacity to provide dynamic identity verification and adaptive authentication.

Overview

Strivacity supports integration with ID DataWeb's Attribute Exchange Network and its AXN Verify and AXN Manage products for any existing ID DataWeb customers. This enables joint customers to easily integrate the existing ID DataWeb solution into any customer registration process or during authentication - tying identity proofing and identity verification directly into your customer facing applications.

ID Data Web provides the following key features:

1) MobileMatch for verifying that the user has a phone registered to who they’re claiming to be.

2) BioGovID for verifying the user’s provided selfie matches an authentic government issued ID.

3) Dynamic KBA for verifying that the user knows answers to personalized questions about who they’re claiming to be.

4) Single Integration Point to a network of 70+ services that support 100+ countries across 3 tiers of identity verification – legal identity, relationships, and environmental context

5) Configurable Policy Engine to map complex scenarios using cross-provider risk scores

6) Preconfigured Templates for simplified compliance (International KYC, US investor verification

Learn How To

1) Setup Identity Proofing During Self-service Registration

2) Setup Identity Proofing During Login

Setup Identity Proofing During Self-service Registration

To setup Identity Proofing during your customer's self-service registration process, follow these steps:

1) Start by logging into the Admin Console using an admin account

2) From the left-hand menu, select Lifecycle Event Hooks

3) Under the Lifecycle Event Hook screen, you will see a listing of any existing Event Hooks. If this is a new Strivacity instance, then you will not see any listed, as shown below:

Click to Enlarge

4) Click the + Create an Event Hook button from the top right side of the screen

5) Next, add a relevant hook name, in this case we called this hook 'Identity Proofing During Registration' and for the Hook Type, select Pre-Registration from the list of available options. You will notice that Await Result is automatically enabled. Now click the Save button. This is shown in the screenshot below:

📘

The Pre-Registration Event Hook is used to invoke the ID DataWeb OIDC Flow during Strivacity's own OIDC Registration Flow. This is what provides and acts as the point of integration between the two solutions.

Click to Enlarge

6) The Pre-Registration hook will now be created and Strivacity's integration IDE will be displayed, as shown below:

Click to Enlarge

7) Next, refer to the Strivacity Integrations Repository for the IDDataWeb integration. Copy the code from the pre-registration.hook.js file and paste it into the IDE, replacing the contents. Please customize the following configuration items at the top of the implementation:

const IDDW_CLIENT_ID = "";
const IDDW_CLIENT_SECRET = "";
const IDDW_URL = "https://prod1.iddataweb.com/prod-axn/axn/oauth2";
const STRV_URL = "https://<domain>.strivacity.com";

Note that this implementation is a SAMPLE and is only provided as a guide. Please customize as you see fit for your environment and objectives.

8) Next, you will need to assign the Identity Proofing During Registration function to the Application using the Pre-Registration event hook (its easier than it sounds!).

9) From the left-hand menu, select Applications and choose your customer facing application that you are adding Identity Proofing to. Scroll down to Lifecycle Event Hooks and select 'Pre-Registration' and 'Identity Proofing During Registration' from the Event Hook and Function drop down lists. This is shown below:

Click to Enlarge

10) Next, click the Save button. This will save the configuration and complete the integration of ID DataWeb and Strivacity.

Setup Identity Proofing During Login

To setup Identity Proofing during your customer's login process, follow these steps:

1) Start by logging into the Admin Console using an admin account

2) From the left-hand menu, select Lifecycle Event Hooks

3) Under the Lifecycle Event Hook screen, you will see a listing of any existing Event Hooks. If this is a new Strivacity instance, then you will not see any listed, as shown below:

Click to Enlarge

4) Click the + Create an Event Hook button from the top right side of the screen

5) Next, add a relevant hook name, in this case we called this hook 'Identity Proofing During Login' and for the Hook Type, select Post-Login from the list of available options. You will notice that Await Result is automatically enabled. Now click the Save button. This is shown in the screenshot below:

📘

The Post-Login Event Hook is used to invoke the ID DataWeb OIDC Flow during Strivacity's own OIDC Registration Flow. This is what provides and acts as the point of integration between the two solutions.

Click to Enlarge

6) The Post-Login hook will now be created and Strivacity's integration IDE will be displayed, as shown below:

Click to Enlarge

7) Next, refer to the Strivacity Integrations Repository for the IDDataWeb integration. Copy the code from the pre-registration.hook.js file and paste it into the IDE, replacing the contents. Please customize the following configuration items at the top of the implementation:

const IDDW_CLIENT_ID = "";
const IDDW_CLIENT_SECRET = "";
const IDDW_URL = "https://prod1.iddataweb.com/prod-axn/axn/oauth2";
const STRV_URL = "https://<domain>.strivacity.com";

Note that this implementation is a SAMPLE and is only provided as a guide. Please customize as you see fit for your environment and objectives.

8) Next, you will need to assign the 'Identity Proofing During Login' function to the Application using the Pre-Registration event hook (its easier than it sounds!).

9) From the left-hand menu, select Applications and choose your customer facing application that you are adding Identity Proofing to. Scroll down to Lifecycle Event Hooks and select 'Post-Login' and 'Identity Proofing During Login' from the Event Hook and Function drop down lists. This is shown below:

Click to Enlarge

10) Next, click the Save button. This will save the configuration and complete the integration of ID DataWeb and Strivacity.