In order to access Everifin services via API two account types are required:

Client Service Account

The following details of client service account will be delivered by Everifin:

Everifin User Account

Before you can start using the API, you need to create a user account (This user will then connect bank accounts). This is done by using the Everifin Identity provider.

Identity provider host-name

The following table provides the values for identity provider host-name in testing and production environments.

Host-name wildcard

Testing environment

Production environment

{{everifin_idp_url}}

https://app.stage.everifin.com

https://app.everifin.com

User account registration and login process

More details on authentication API can be found here: Authentication

  1. Redirect your customer to {{everifin_idp_url}}/auth/realms/{{your_realm_value}}/protocol/openid-connect/auth/?client_id={{your_client_id}}&&redirect_uri={{client_redirect_uri}}&response_type=code&scope={{scope}}

  2. Now the user can register (or re-login in case the access token expired). The user registration process is described here: Everifin User Registration

  3. After successful email verification (part of the user registration process) the user is redirected back to your URL (specified in redirect_uri query parameter). The authorization code is provided in code query parameter.

  4. This code needs to be provided as input parameter in the request to token endpoint in order to obtain the access token and refresh token: Token Request . The access token should be stored in your system as it needs to be provided in authorization header in every API request accessing Everifin services (for details follow the API documentation: https://documenter.getpostman.com/view/19811544/2s935itRL2).

  5. After this you can redirect the user to log in page of the Everifin Application where she/he can connect the bank accounts (Connecting Bank Account):
    - Staging app URL: Everifin App - Stage
    - Production app URL: Everifin App - PROD

  6. Once the bank accounts are successfully connected under Everifin user account and the user comes back to your application, you can obtain bank account(s) data.

In case the access token expires, you can use refresh token endpoint to refresh it: Refresh Token Request.

When the refresh token expires, you need to redirect your customer to same page as in the step 1. This way you obtain new access token and long-lasting refresh token.

In case of test environment, you are welcome to create as many test users as you need