Authentication

The authentication process describe how to add a link to your website to Securitize D and how to retrieve the information provided after the login process and use it on Connect API

Requisites

Before you can interact with Securitize iD APIs, request from Customer Success team the following information:

  • issuerID or DomainID: this is the ID which identifies your unique Domain.

  • OAuthsecret: this is the OAuth secret.

  • Base URL: where to connect to Securitize iD (Sandbox or Production environments).

You will have to provide a redirectURL to a server where your logic is running. This URL has to be whitelisted by Securite. You can find more information of how to perform the process here.

In order to integrate Securitize iD as an authentication procedure, you will just have to add a Log in with Securitize iD button to your log in/registration page. That button will provide a link to initiate the OAuth process so the user can login and carry out the verification steps.

The initial flow

Initiating the OAuth process

To initiate the authentication process simply redirect the user to:

https://id.securitize.io/#/authorize?issuerId=[CLIENT_ID]&scope=[SCOPE]&redirecturl=[REDIRECT_URL]

Example:

https://id.securitize.io/#/authorize?issuerId=123e4567-e89b&scope=info%20details%20verification&redirecturl=https://dashboard.securitize.io/authorization

Working with OAuth response

If the process was successful we will return the following data added to your redirect url

https://REDICT_URL?code=40cba031-8fd2-4a88-89ff-36e07e5e060b&country=US&authorized=true

Example:

This JavaScript snippet captures the query string of the redirected URL:

 function captureTOKEN() {
   const queryString = window.location.search;
   const urlParams   = new URLSearchParams(queryString);
   const code        = urlParams.get("code");
   const country     = urlParams.get("country");
   const authorized  = urlParams.get("authorized");
   console.log(code, country, authorized);
   if (authorized == "true") {
     // User has signed-up and has a SecuritizeID
   }
 }

Last updated