Checks

The gateway to ComplyCube's client verification services.

Checks enable you to run various types of verifications against your clients. You can perform the following types of checks:

The checks API allows you to create, update, validate, and retrieve checks. You can retrieve a specific check as well as a list of all your client's checks.

All checks are asynchronous.

The Check object

Attribute

Type

Description

id

string

The unique identifier for a check.

clientId

string

The ID of the client associated with this check.

enableMonitoring

boolean

Determines whether continuous monitoring is enabled. When not provided, it defaults to false.

documentId

string

The ID of the document. This is expected when the type of check is document_check or identity_check.

livePhotoId

string

The ID of the live photo. This is expected when the type of check is identity_check.

entityName

string

The full name of the client. This will be auto-generated.

type

string

options

object

The optional configuration associated with the check. Also, see the options object below.

status

string

The status of the check. As checks are asynchronous, their status will change as their state transitions. Values can be:

  1. pending - the status on initiation.

  2. complete - the status upon completion.

  3. failed - the status if a check fails.

result

object

The result of the check. This will only have a value when a check is complete. The content will depend on the type of check.

createdAt

string

The date and time when the check was created.

updatedAt

string

The date and time when the check was completed.

Details for a client of type company. Also, see the companyDetails object below.

Structured Date format

In many cases, an attribute within a check's result object, will contain an attribute with values that's in a structured date format.

Attribute

Type

Description

day

number

The day of the month. Value range 1-31.

month

number

The month. Value range 1-12.

year

number

The year, in YYYY format.

The options object

Attribute

Description

analysisCoverage

Type: array[string]

The types of analysis to conduct as part of a document check. Valid values include:

  1. consistency_analysis

  2. forensic_analysis

  3. content_analysis

  4. format_analysis

  5. front_back_analysis

  6. mrz_analysis

When this attribute is not provided, we will conduct all analysis types.

This is only applicable to checks of type document_check.

screeningListsScope

Type: object

The scope of lists to search as part of a screening check. See the screeningListsScope below.

When this attribute is not provided, we will conduct a search against all eligible lists.

This is only applicable to checks of type standard_screening_check and extensive_screening_check.

screeningClassification

Type: array[string]

The match classifications to include as part of a screening check. Valid values include:

  1. pepLevel1

  2. pepLevel2

  3. pepLevel3

  4. pepLevel4

  5. watchlistSanctionsLists

  6. watchlistOtherOfficialLists

  7. watchlistWarCrimes

  8. watchlistTerror

  9. watchlistOtherExclusionLists

  10. watchlistSanctionsControlAndOwnership

  11. adverseMediaEnvironmentProduction

  12. adverseMediaSocialLabour

  13. adverseMediaCompetitiveFinancial

  14. adverseMediaRegulatory

  15. otherListsAssociatedEntity

  16. otherListsOrganisedCrime

  17. otherListsFinancialCrime

  18. otherListsTaxCrime

  19. otherListsCorruption

  20. otherListsTrafficking

When this attribute is not provided, we will conduct a search against all eligible classifications.

The screeningListsScope object

Attribute

Description

mode

Type: string

The criteria to apply to the lists when performing a screening search. Valid values include:

  1. inclusion

  2. exclusion

When this attribute is not provided, it will default to inclusion.

lists

Type: array[string]

The lists to include or exclude as part of the screening search.

Last updated