Enhanced Identity Check
Run an enhanced identity check
To run an Enhanced Identity Check, you must create a check with type
set to enhanced_identity_check
.
The documentId
provided must have associated image attachments that adhere to our image specifications.
Learn more about Enhanced Identity Checks.
We will use the front side of the document for the Enhanced Identity Check.
Check request
clientId
string
The ID of the client associated with this check. (Required)
type
string
This must be set to enhanced_identity_check
. (Required)
documentId
string
The ID of the document. (Required)
liveVideoId
string
The ID of the live video. (Required)
Example request
Result object
The result
object is only returned when the status of the check is complete
. It has two components - outcome
and breakdown
.
Outcome
The outcome attribute represents the overall check result. Returned values include:
clear
: Indicates every analysis conducted returned a successful result, and hence the identity is authentic.attention
: Indicates at least one of the analysis results requires attention.
Breakdown
The breakdown comprises the following objects:
faceAnalysis
object
faceAnalysis
objectThe facial analysis results. It has the following constituents:
facialSimilarity
: Indicates whether the faces on the live video and document belong to the same person.previouslyEnrolledFace
: Indicates whether the face on the live photo has been previously enrolled as a different client.breakdown
: Breakdown related to facial analysis.facialSimilarityScore
: Indicates the similarity level of whether two faces belong to the same person. The score will be 1 for a perfect match.enrolledFacesMatches
: If a face is deemed to have been enrolled previously, this will contain an array of objects that contain the following:clientId
: The unique identifier for the matching client.entityName
: The client's full name.livePhotoId
: The unique identifier for the matching live photo.liveVideoId
: The unique identifier for the matching live video. Either a liveVideoId or livePhotoId will exist in the object, not both.facialSimilarityScore
: The similarity level of the client's face against the live photo associated with the check.
authenticityAnalysis
object
authenticityAnalysis
objectThe facial analysis results. It has the following constituents:
spoofedImageAnalysis
: Indicates whether the images are spoofed, copied from the internet, or are known blacklisted images.livenessVoiceChallengeAnalysis
: Indicates if the client had recited the correct text during the voice challenge.livenessActionChallengeAnalysis
: Indicates if the client had performed the correct movements during the actions challenge.breakdown
: Breakdown related to authenticity analysis.specimenCheckMatches
: If an image is deemed copied from the internet, this will contain an array of URLs pointing to the image.livenessCheckScore
: Indicates the liveness score of the live photo. The score will be 100 when it is assumed to be authentic.
integrityAnalysis
object
integrityAnalysis
objectThe integrity analysis results. It has the following constituents:
faceDetection
: Indicates whether the images contained the expected number of faces.vpnDetected
: Indicates whether the client was using a Virtual Private Network (VPN) when conducting the check.
Sample Response
Last updated