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 Client object
  • The personDetails object
  • The companyDetails object

Was this helpful?

Clients

Clients are a core resource to all ComplyCube services.

A client represents the person or company you will perform on the various checks. To initiate a check, you must first create a client.

The API allows you to create, retrieve, update, and delete your clients. You can retrieve specific clients as well as a list of all your clients.

The Client object

Attribute

Type

Description

id

string

The unique identifier for a client.

type

string

The type of client. Valid values are:

  1. person

  2. company

entityName

string

The client's full name.

email

string

The client's email address.

mobile

string

The client's mobile number.

telephone

string

The client's telephone number.

externalId

string

A unique identifier that you can associate with the client. For example, this can be the client ID in your system.

joinedDate

string

The date and time when you registered the client. This is relevant for users that migrate existing clients. The format is YYYY-MM-DD.

personDetails

object

companyDetails

object

createdAt

string

The date and time when the client was created.

updatedAt

string

The date and time when the client was updated.

{
    "id": "5eaecff4a675310007440c09",
    "entityName": "John Doe",
    "type": "person",
    "email": "john.doe@example.com",
    "personDetails": {
        "firstName": "John",
        "lastName": "Doe"
    },
    "createdAt": "2020-01-01T14:06:44.756Z",
    "updatedAt": "2020-01-01T14:06:44.756Z"
}

The personDetails object

Attribute

Type

Description

firstName

string

The person's first name.

middleName

string

The person's middle name.

lastName

string

The person's last name.

dob

string

The person's date of birth. The format is YYYY-MM-DD.

gender

string

The person's gender. Valid values include:

  1. male

  2. female

  3. other

nationality

string

birthCountry

string

The companyDetails object

Attribute

Type

Description

name

string

The company's name.

website

string

The company's website.

registrationNumber

string

The company's registration or incorporation number.

incorporationCountry

string

incorporationType

string

The company's incorporation type. Valid values include:

  1. sole_proprietorship

  2. private_limited_company

  3. public_limited_company

  4. limited_partnership

  5. holding_company

  6. non_government_organisation

  7. statutory_company

  8. subsidiary_company

  9. unlimited_partnership

  10. charitable_incorporated_organisation

  11. chartered_company

PreviousVersioningNextCreate a client

Last updated 4 years ago

Was this helpful?

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

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

The person's nationality. This will be the

The person's birth country. This will be the .

The company's incorporation country. This will be the .

two-letter country ISO code.
two-letter country ISO code
two-letter country ISO code
personDetails
companyDetails