...
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}}
Click "Create new Account" and enter your details, make sure to use a valid email address
You will receive an email asking you to confirm your email address. Open the email and click "Verify Email"Now the user can register (or re-login in case the access token expired). The user registration process is described here: Everifin User Registration
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 incode
query parameter.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).
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 With Everifin UI).:
- Staging app URL: Everifin App - Stage
- Production app URL: Everifin App - PRODOnce 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.
...