This page provides an example of the E_KYC_CHECK response for Brazil.
CPF
{
"checks": [
{
"answer": "GREEN",
"checkType": "E_KYC_CHECK",
"createdAt": "2024-03-21 11:39:23",
"id": "6fe0ec3b-c6d8-4c53-afc6-f33751dbf1c2",
"inputDoc": {
"idDocType": "TAX_PAYER_NUMBER_DOC",
"country": "BRA",
"number": "07244434529" // CPF
},
"extractedDoc": {
"firstName": "LUCAS OLIVEIRA", // Applicant complete name
"aliasName": "MARIA LURDES", // Mother name
"gender": "M",
"dob": "1991-01-15",
"placeOfBirth": "BRASILEIRA",
"additionalFields": [
{
"name": "registrationStatus",
"value": "Regular"
},
{
"name": "fatherName",
"value": "JOHN DOE"
}
]
},
"ekycCheckInfo": {
"externalFaceMatch": true,
"faceMatchAnswer": "GREEN",
"selfieImageId": 118005011, // Image ID of the submitted Liveness selfie
"faceMatchScore": 0.9491729928035084
}
}
]
}
Response explained
The response represents a singleton list of checks.
Root variables
The root variables are the core Non-Doc check result data items. Some of them may include nested attributes and element fields.
| Field | Type | Description |
|---|---|---|
id | String | Unique identifier of the check. |
answer | String | Check answer:
|
inputDoc | Object | Represents the data used for the database check. |
checkType | String | Indicates that it is a E_KYC_CHECK check type. |
extractedDoc | Object | External check source data. It may not be present if the data is not received. |
createdAt | Date | Date and time (UTC) of the latest Non-Doc check result. |
ekycCheckInfo | Object | Represents face matching results. |
violations | Array of strings | Indicates violations that were found:
|
inputDoc attributes
inputDoc attributesThe following table explains the inputDoc attributes representing the data taken from the provided document.
| Field | Type | Description |
|---|---|---|
idDocType | String | Type of the document provided for verification. For example, TAX_PAYER_NUMBER_DOC, ID_CARD, PASSPORT, DRIVERS. |
country | String | Alpha-3 country code (for example, DEU, GBR, ARG, and so on). |
number | String | CPF number provided by the applicant. |
extractedDoc attributes
extractedDoc attributesThe extractedDoc object includes the data obtained from the external source during the E_KYC_CHECK check.
| Field | Type | Description |
|---|---|---|
country | String | Alpha-3 country code (for example, DEU, GBR, ARG, and so on). |
firstName | String | Applicant full name. |
dob | Date | Applicant date of birth (format YYYY-mm-dd, for example, 2001-09-25) as it is specified in the document. |
gender | String | Gender of the applicant (M, F, or X). |
phone | String | Applicant phone number. |
email | String | Applicant email address. |
addresses | Array of objects | The list of addresses extracted from the external sources. |
additionalFields | Array of objects | A collection of key-value pairs, representing additional information about the applicant. |
addresses attributes
addresses attributesThe following table explains the addresses element fields containing the applicant address details extracted from external sources.
| Field | Type | Description |
|---|---|---|
street | String | Street where the applicant lives and/or is registered. |
buildingNumber | String | Building number. |
subStreet | String | Additional information related to the applicant address. |
town | String | City, town, or another settlement where the applicant lives and/or is registered. |
state | String | Address state. |
postCode | String | Address postal code. |
country | String | Alpha-3 country code (for example, DEU, GBR, ARG, and so on). |
formattedAddress | String | Address in a human-readable format. |
additionalFields element fields
additionalFields element fieldsAn array of key-value pairs providing non-standard additional information. The following table explains the possible keys.
| Field | Type | Description |
|---|---|---|
status | String | CPF registration status:
|
ekycCheckInfo attributes
ekycCheckInfo attributes| Field | Type | Description |
|---|---|---|
externalFaceMatch | Boolean | Indicates that the face match verification is done using an external source. |
faceMatchAnswer | String | Face match verification results:
|