Authenteq API Documentation
  • Introduction
  • Create an Account
  • Documentation
    • Change Log
      • Mobile SDK
      • Web and API
    • Migration Guides
      • Mobile SDK 1.63 & WebIDV
      • Multi-Document Flow
    • Version Support
  • Mobile SDK
    • iOS
      • iOS Requirements
      • Installation
      • Identification
        • Identification Result
        • Document Identification Result
      • Face Authentication
      • Errors
      • Customization
    • Android
      • Android Requirements
      • Installation
      • Identification
        • Identification Result
        • Document Identification Result
      • Face Authentication
      • Customization
    • React Native
      • iOS
      • Android
    • Flutter
      • iOS
      • Android
    • Authentication Token
    • UI Customization
    • Examples
  • Web
    • Web Overview
    • Getting Started
    • How to Integrate Web?
    • Examples
    • API Reference
  • Export
    • Export Overview
    • API Reference
  • Webhook
    • Webhook Overview
  • AML
    • AML Overview
    • API Reference
  • Verification Links
    • Verification Links Overview
  • Recognition
    • Recognition Overview
    • API Reference
Powered by GitBook
On this page
  • Obtain a mobile SDK temporary authentication token for identity verification
  • Obtain a mobile SDK temporary authentication token for face authentication
  • Result

Was this helpful?

  1. Mobile SDK

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

Name
Type
Description

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"
}
{
  "errorCode": "API_KEYS_MISSING",
  "errorMessage": "No API Keys in the Authorization header"
}
{
  "errorCode": "ACCOUNT_DEACTIVATED",
  "errorMessage": "Account deactivated. Please contact your Authenteq Sales Representative in order to keep using this service"
}huiHjio

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

Name
Type
Description

Authorization*

string

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

{
  "accessToken": "81e4cbce-cdad-11eb-8fc3-784f4385af2b"
}
{
  "errorCode": "API_KEYS_MISSING",
  "errorMessage": "No API Keys in the Authorization header"
{
  "errorCode": "ACCOUNT_DEACTIVATED",
  "errorMessage": "Account deactivated. Please contact your Authenteq Sales Representative in order to keep using this service"
}huiHjio

Result

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

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

Last updated 2 years ago

Was this helpful?