...
User account registration and login process
Info |
---|
More details on authentication API can be found here: |
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
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"
After successful email verification 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 the user can log in on page https://app.stage.everifin.com/ and connect bank accounts.
Once the bank accounts are successfully connected under Everifin user account, you can obtain bank account(s) data and use other related services (e.g. initiate payments) via API.
...