Authentication Token

Authentication token can only be used for a single operation. Always generate a new token before start a new verification or face authentication.

Obtain a mobile SDK temporary authentication token for identity verification

GET https://api.app.authenteq.com/mobile-sdk/verification-token

This endpoint is authorized with Basic Authorization. You should use your Client ID and Client Secret from the Customer Dashboard as credentials.

Headers

NameTypeDescription

Authorization*

string

Your client credentials combined with a colon separator, base64-encoded and prefixed with "Basic ".

AQ-Multi-Document-Flow

string

To enable verification flow settings from Customer Dashboard specify "On".

(deprecated)

AQ-Flow-Slug

string

Flow ID that specify which verification flow to use. Flow IDs are defined in the Customer Dashboard, section Verification Flow.

{
  "accessToken": "81e4cbce-cdad-11eb-8fc3-784f4385af2b"
}

Previous /mobile-sdk/token is deprecated. Please use /mobile-sdk/verification-token

Obtain a mobile SDK temporary authentication token for face authentication

GET https://api.app.authenteq.com/mobile-sdk/face-authentication-token

This endpoint is authorized with Basic Authorization. You should use your Client ID and Client Secret from the Customer Dashboard as the credentials.

Headers

NameTypeDescription

Authorization*

string

Your client credentials combined with a colon separator, base64-encoded and prefixed with "Basic ".

{
  "accessToken": "81e4cbce-cdad-11eb-8fc3-784f4385af2b"
}

Result

When successful these API will respond with a single property named accessToken:

{
    "accessToken": "64E0B779-44FF-4273-B7C1-B0C6366FE65E"
}

Last updated