API Reference
Log inSign up
v.1.7.2
v.1.7.2
  • Introduction
  • Integration
  • Sandbox and Live
  • Authentication
  • Rate Limits
  • Service Quota
  • Errors
  • Pagination
  • Filtering
  • Versioning
  • Core resources
  • Clients
    • Create a client
    • Get a client
    • Update a client
    • Delete a client
    • List clients
    • Filtering clients
  • Addresses
    • Create an address
    • Get an address
    • Update an address
    • Delete an address
    • List addresses
    • Filtering addresses
  • Documents
    • Create a document
    • Get a document
    • Update a document
    • Upload image attachment
    • Download image attachment
    • Delete image attachment
    • Delete a document
    • List documents
    • Filtering documents
  • Live Photos
    • Upload a live photo
    • Get a live photo
    • Download live photo
    • Delete a live photo
    • List live photos
  • Checks
    • Create a check
    • Get a check
    • Update a check
    • Validate check outcome
    • List checks
    • Filtering checks
  • Risk Profile
    • Get a risk profile
  • Check types
    • AML Screening Check
    • Document Check
    • Identity Check
  • Other Resources
    • Webhooks
      • Create a webhook
      • Get a webhook
      • Update a webhook
      • Delete a webhook
      • List webhooks
      • Filtering webhooks
    • Reports
      • Generate a client report
      • Generate a check report
    • SDK Tokens
      • Generate a token
    • Team Members
      • Get a team member
      • List team members
      • Filtering team members
    • Audit Logs
      • Get an audit log
      • List audit logs
      • Filtering audit logs
Powered by GitBook
On this page
  • The Check object
  • Structured Date format
  • The options object
  • The screeningListsScope object

Was this helpful?

Checks

The gateway to ComplyCube's client verification services.

PreviousList live photosNextCreate a check

Last updated 4 years ago

Was this helpful?

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

The type of check. Valid values include:

options

object

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.

{
    "id": "5eb2b61e02df0a0008f1cf2a",
    "clientId": "5eb1276d96be4a0008713af5",
    "entityName": "John Doe",
    "type": "extensive_screening_check",
    "enableMonitoring": false,
    "status": "complete",
    "result": {
        "outcome": "clear",
        "breakdown": {
            "summary": {
                "pep": {
                    "level1": "clear",
                    "level2": "clear",
                    "level3": "clear",
                    "level4": "clear"
                },
                "watchlist": {
                    "sanctionsLists": "clear",
                    "otherOfficialLists": "clear",
                    "warCrimes": "clear",
                    "terror": "clear",
                    "otherExclusionLists": "clear",
                    "sanctionsControlAndOwnership": "clear"
                },
                "adverseMedia": {
                    "environmentProduction": "clear",
                    "socialLabour": "clear",
                    "competitiveFinancial": "clear",
                    "regulatory": "clear"
                },
                "otherLists": {
                    "associatedEntity": "clear",
                    "organisedCrime": "clear",
                    "financialCrime": "clear",
                    "taxCrime": "clear",
                    "corruption": "clear",
                    "trafficking": "clear"
                }
            }
        }
    },
    "createdAt": "2020-01-01T14:06:44.756Z",
    "updatedAt": "2020-01-01T14:06:91.913Z"
}

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.

{
    ...
    "expirationDate":{
        "day": 1,
        "month": 12,
        "year": 2020
    }
    ...
}

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

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.

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

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

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

Standard AML Screening
Extensive AML Screening
Document Check
Identity Check
standard_screening_check
extensive_screening_check
document_check
identity_check
screeningListsScope
options
companyDetails