Public
Documentation Settings

Everifin Backend

auth

GETGet Everifin Auth Code

{{everifin-idp-url}}/realms/{{idp-realm}}/protocol/openid-connect/auth?client_id={{client_id}}&redirect_uri={{redirect_uri}}&response_type=code

Endpoint for initiating authentication to Everifin Web Application

PARAMS
client_id

{{client_id}}

Value provided by Everifin support team.

redirect_uri

{{redirect_uri}}

Redirect URI where to redirect after login to Everifin app.

response_type

code

Indicates to Identity provider to provide authorization code as a result of login. The code will then be used in token endpoint to obtain access token and refresh token.

POSTGet Access Token

{{everifin-idp-url}}/realms/{{idp-realm}}/protocol/openid-connect/token

Endpoint to obtain access token using various grant types (authorisation_code, password)

HEADERS
Content-Type

application/x-www-form-urlencoded

Bodyurlencoded
grant_type

authorization_code

authorization_code | password

code

{{auth_code}}

Code obtained after redirecting back from Everifin App login screen

client_id

{{client_id}}

Value provided by Everifin support team

redirect_uri

{{redirect_uri}}

Redirect URI used in the Get Auth Code endpoint. Required only for authorization_code grant type.

client_secret

{{client_secret}}

Client Secret. Provided by Everifin support team

username

{{username}}

Everifin app username. Required for password grant type

password

{{password}}

Everifin app password. Required for password grant type

POSTGet Access Token Asseco

{{everifin-idp-url}}/realms/{{idp-realm}}/protocol/openid-connect/token

Endpoint to obtain access token using various grant types (authorisation_code, password)

HEADERS
Content-Type

application/x-www-form-urlencoded

Bodyurlencoded
grant_type

authorization_code

authorization_code | password

code

{{auth_code}}

Code obtained after redirecting back from Everifin App login screen

client_id

{{client_id}}

Value provided by Everifin support team

redirect_uri

{{redirect_uri}}

Redirect URI used in the Get Auth Code endpoint. Required only for authorization_code grant type.

client_secret

{{client_secret}}

Client Secret. Provided by Everifin support team

username

{{username}}

Everifin app username. Required for password grant type

password

{{password}}

Everifin app password. Required for password grant type

Loading