Face Authentication

Create a face authentication

Beta

Create a face authentication for an applicant you've previously verified using the Identity Verification solution.

Ensure you use your Face Authentication configuration ID.

SecurityOAuth2: OAuth or API Key: ApiSecretKey
Request
Request Body schema: application/json
required
applicant_id
required
string^aplt_\w+$

The applicant's unique identifier.

user_journey_id
required
string^usj_[a-z2-7]{26}$

Your configuration ID.

Responses
201

Face authentication created successfully

400

Bad Request

401

Unauthorized

422

Unprocessable Content

500

Internal Server Error

503

Service Unavailable

post/face-authentications
Request samples
application/json
{
  • "user_journey_id": "usj_t5bdzsdmi57ehhkrnmp5omjimu",
  • "applicant_id": "aplt_tkoi5db4hryu5cei5vwoabr7we"
}
Response samples
application/json
{}

Get a face authentication

Beta

Get the details of a face authentication.

SecurityOAuth2: OAuth or API Key: ApiSecretKey
Request
path Parameters
face_authentication_id
required
string (FavFaceAuthenticationId) ^fav_\w+$

The face authentication's unique identifier.

Example: fav_mtta050yudd54y5iqb5ijh8jtvz
Responses
200

Face authentication retrieved successfully

401

Unauthorized

500

Internal Server Error

503

Service Unavailable

get/face-authentications/{face_authentication_id}
Request samples
Response samples
application/json

Anonymize a face authentication

Beta

Remove the personal data in a face authentication.

SecurityOAuth2: OAuth or API Key: ApiSecretKey
Request
path Parameters
face_authentication_id
required
string^fav_\w+$

The face authentication's unique identifier.

Example: fav_mtta050yudd54y5iqb5ijh8jtvz
Responses
200

Personal data removed successfully

401

Unauthorized

404

Not Found

422

Unprocessable Content

500

Internal Server Error

503

Service Unavailable

post/face-authentications/{face_authentication_id}/anonymize
Request samples
Response samples
application/json
{}

Create a face authentication attempt

Beta

Create an attempt for a face authentication.

If you've already created an attempt for this authentication, the authentication status must be one of the following:

  • created
  • pending
  • capture_in_progress
  • retry_required

If you create a new attempt while the status is any other value, you receive a 409 Conflict response.

SecurityOAuth2: OAuth or API Key: ApiSecretKey
Request
path Parameters
face_authentication_id
required
string^fav_\w+$

The face authentication's unique identifier.

Example: fav_mtta050yudd54y5iqb5ijh8jtvz
Request Body schema: application/json
redirect_url
required
string <uri>

The URL to redirect the applicant to after the attempt.

object (ClientInformation)

The applicant's details.

Responses
201

Face authentication attempt created successfully

404

Not Found

409

Conflict

500

Internal Server Error

post/face-authentications/{face_authentication_id}/attempts
Request samples
application/json
Response samples
application/json
{}

Get face authentication attempts

Beta

Get the details of all attempts for a specific face authentication.

SecurityOAuth2: OAuth or API Key: ApiSecretKey
Request
path Parameters
face_authentication_id
required
string^fav_\w+$

The face authentication's unique identifier.

Example: fav_mtta050yudd54y5iqb5ijh8jtvz
Responses
200

Face authentication attempts retrieved successfully

404

Not Found

500

Internal Server Error

get/face-authentications/{face_authentication_id}/attempts
Request samples
Response samples
application/json
{}

Get a face authentication attempt

Beta

Get the details of a specific attempt for a face authentication.

SecurityOAuth2: OAuth or API Key: ApiSecretKey
Request
path Parameters
face_authentication_id
required
string^fav_\w+$

The face authentication's unique identifier.

Example: fav_mtta050yudd54y5iqb5ijh8jtvz
attempt_id
required
string^fatp_\w+$

The attempt's unique identifier.

Example: fatp_nk1wbmmczqumwt95k3v39mhbh2w
Responses
200

Face authentication attempt retrieved successfully

404

Not Found

500

Internal Server Error

get/face-authentications/{face_authentication_id}/attempts/{attempt_id}
Request samples
Response samples
application/json
{}

Get face authentication attempt assets

Beta

Get the assets (face images and videos) captured during a face authentication attempt.

Videos are not exposed by default. Contact your account manager to enable this feature.

Results are paginated. Use the skip and limit query parameters to navigate through pages.

SecurityOAuth2: OAuth or API Key: ApiSecretKey
Request
path Parameters
face_authentication_id
required
string^fav_\w+$

The face authentication's unique identifier.

Example: fav_mtta050yudd54y5iqb5ijh8jtvz
attempt_id
required
string^fatp_\w+$

The attempt's unique identifier.

Example: fatp_nk1wbmmczqumwt95k3v39mhbh2w
query Parameters
skip
integer
Default: 0

The number of assets to skip.

limit
integer
Default: 10

The maximum number of assets to return.

Responses
200

Face authentication attempt assets retrieved successfully

404

Not Found

500

Internal Server Error