Documentation
HomeSupportStatusSign in ->
  • Developer guide
  • How it works?
  • Integration Quick Guide
    • Link Flow
    • Embedded Flow
    • Running Workflow
  • Production setup
  • Webhooks
  • Widget
    • Methods
    • Inline mode
  • Postman Collection
  • Changelog
  • Records
    • Introduction
    • Migration Guide: Migrating from Cases to Records
  • TRANSACTIONLINK API
    • API Reference
      • Authentication
      • Cases (deprecated)
      • Resources
      • Parameters
      • Token
      • Link
      • Workflows
      • Records
        • Attachments
    • API Changelog
    • API Versioning
  • Integrations
    • AIS
      • Data fields availability across banks
      • Testing data
    • Autopay
    • BIG Info Monitor
      • Company Report
      • Personal Report
      • Entrepreneur Report
      • Plus Sco Plus CR3 Report
    • BankID
      • 🇳🇴Norway
      • 🇩🇰Denmark
    • CEIDG
      • Get company
      • List companies
    • Companies House
      • Public Data Api
        • Exemptions
        • Persons with significant Control
        • UK Establishments
        • Filing History
        • Registers
        • Registered Office Address
        • Company Profile
        • Officers
        • Insolvency
        • Charges
      • Documents Api
    • ComplyAdvantage
    • ComplyCube
      • Identity Verification
        • Document Check
        • Proof of Address Check
        • Identity Check
      • Document Check
      • AML Screening Check
      • Face Authentication Check
    • Data Ninja
      • Labeling
      • Profiling
      • Scoring
    • eDO App
    • GUS
    • IAML
    • KRD
      • Company Report
      • Personal Report
      • Identity Card Verification
    • mObywatel
      • CitizenDetails
      • CitizenNationality
    • OnDato
    • Polish VAT Whitelist
    • Przelewy 24
    • PWG
    • QARD
    • Rejestr.io
    • Registru Centras
      • Get company
      • List documents
      • Get document
    • Smart-ID
    • SMS API
    • Twilio
    • MojeId
    • Veriff
      • Supported Browsers
    • VIES (Vat Validation)
      • vies
    • Zoho Sign
      • Adding document fields automatically using text tags
    • Idenfy
    • GBG
      • IDScan
      • Verifications
    • Visa
    • KYB
      • Company Profile
    • Handelsregister
      • Company profile
        • List companies
        • Get company
        • Get company documents
    • InfoCamere
      • Company profile
        • List companies
        • List persons
        • Get company
        • Get person
        • Get documents
    • CBE - Belgium Company Register
      • Company profile
        • List companies
        • Get company
        • List documents
        • Get document
    • Transparenzregister
      • Beneficial owners
        • List companies
        • List documents
        • Get documents
    • CVR (Danish Central Business Register)
      • Company profile
        • List Companies
        • Get Company
        • Get document
    • Malta Business Registry
      • Company profile
        • List Companies
        • Get Company
Powered by GitBook
On this page
  • What kind of data I will get
  • Input
  • Input Example
  • Output
  • Result
  • Breakdown
  • FaceAuthentication
  • SubBreakdown
  • FaceMatch
  • EnrolledFaces
  • Output Example

Was this helpful?

  1. Integrations
  2. ComplyCube

Face Authentication Check

What kind of data I will get

The Face Authentication Check service provided by ComplyCube allows businesses to authenticate the identity of their users through advanced facial recognition technology. This service is designed to improve security and streamline the authentication process by matching a person's face against previously registered biometric data.

To utilize the Face Authentication Check, the customer must have successfully passed a check that required providing photo of the person.

One key advantage of the Face Authentication Check is that it does not require the customer to provide their ID again. The system utilizes the image captured during the initial Identity Check for comparison purposes.

Input

Field
Description
Type
Required

clientId

Id of the client that successfully passed other identity confirming check

string

Yes

Input Example

{
    "clientId": "6230d4ab58ed4a434afbf2cc"
}

Output

Attribute
Type
Description

id

String

Unique identifier for the main entity

entityName

String

Name of the entity being processed

type

String

Type of the operation (e.g., face_authentication_check)

clientId

String

Unique identifier for the client

livePhotoId

String

Identifier for the live photo used in the authentication

status

String

Current status of the process (e.g., complete)

Object

Object containing detailed result data

updatedAt

String

Timestamp of the last update

createdAt

String

Timestamp of when the entity was created

Result

Attribute
Type
Description

outcome

String

Final outcome of the authentication (e.g., clear)

Object

Object containing a detailed breakdown of the result

Breakdown

Attribute
Type
Description

Object

Object containing face authentication and similarity information

FaceAuthentication

Attribute
Type
Description

facialSimilarity

String

Similarity status of the face (e.g., clear)

Object

Object containing detailed information on matches

SubBreakdown

Attribute
Type
Description

Array<Object>

List of objects containing facial match info

Object

Object containing information about enrolled faces

FaceMatch

Attribute
Type
Description

livePhotoId

String

Identifier for the matched live photo

facialSimilarityScore

Integer

Score indicating the similarity of the face match

EnrolledFaces

Attribute
Type
Description

livePhotoIds

Array<String>

List of identifiers for the enrolled faces

Output Example

{
    "id": "6231d54079f59b1530fc76e3",
    "entityName": "John Doe",
    "type": "face_authentication_check",
    "clientId": "6230d4ab58ed4a434afbf2cc",
    "livePhotoId": "6231d137095afa000955ffc2",
    "status": "complete",
    "result": {
        "outcome": "clear",
        "breakdown": {
            "faceAuthentication": {
                "facialSimilarity": "clear",
                "breakdown": {
                    "facesMatched": [
                        {
                            "livePhotoId": "6230d4f928e6ae00091747f9",
                            "facialSimilarityScore": 100
                        }
                    ],
                    "enrolledFaces": {
                        "livePhotoIds": [
                            "6230d4f928e6ae00091747f9",
                            "6230d4f928e6ae00091747fa"
                        ]
                    }
                }
            }
        }
    },
    "updatedAt": "2022-03-01T12:17:06.046Z",
    "createdAt": "2022-03-01T12:17:04.809Z"
}
PreviousAML Screening CheckNextData Ninja

Last updated 11 months ago

Was this helpful?

result
breakdown
faceAuthentication
breakdown
facesMatched
enrolledFaces