Verifications

Verifications

The Verifications action is one of the primary services within the ID3global API. This action enables to submit available information about a data subject and performs an identity verification.

Input

AttributeTypeDescription

Object

Personal details of the subject (See Person Details below)

Object

Additional information about the subject (See Additional Information below)

person

AttributeTypeDescription

firstName

String

First name of the subject.

middleNames

Array

Array of middle names (if any).

lastNames

Array

Array of last names.

dateOfBirth

String

Date of birth of the subject.

Object

Current address details (See Address Details below)

Array

Array of phone details (See Phone Details below)

currentAddress

AttributeTypeDescription

building

String

Building number of the current address.

thoroughfare

String

Street name of the current address.

locality

String

Locality or city of the current address.

postalCode

String

Postal code of the current address.

country

String

Country of the current address.

phones

AttributeTypeDescription

type

String

Type of phone (e.g., Landline).

number

String

Phone number.

additionalInformation

AttributeTypeDescription

Array

Array of identity documents (See Identity Document Details below)

identityDocuments

AttributeTypeDescription

documentType

String

Type of identity document (e.g., Identity Card).

documentNumber

String

Number of the identity document.

country

String

Country of issuance of the identity document.

profiles

AttributeTypeDescription

id

String

Unique identifier for the profile.

version

Integer

Version number of the profile.

Example Input

{
    "profiles": [
        {
            "id": "3fe7ba48-ff56-4703-bd8c-961cfcb569c7",
            "version": 1
        }
    ],
    "subject": {
        "person": {
            "firstName": "Jakub",
            "middleNames": [
                "Jan"
            ],
            "lastNames": [
                "Nowak"
            ],
            "dateOfBirth": "1955-07-07",
            "currentAddress": {
                "building": "123",
                "thoroughfare":  "ul. Nowy Świat",
                "locality": "Warsaw",
                "postalCode": "00-373",
                "country": "Poland"
            },
            "phones": [{
                "type": "Landline",
                "number": "+48221234567"
            }]
        },
        "additionalInformation": {
            "identityDocuments": [
                {
                    "documentType": "Identity Card",
                    "documentNumber": "ADX061643",
                    "country": "Poland"
                }
            ]
        }
    }
}

Response Content

AttributeTypeDescription

timestamp

String

Timestamp of the authentication result.

authenticationID

String

Unique identifier for the authentication process.

Object

Profile information (See Profile Information below)

country

String

Country associated with the authentication result.

Object

Detailed result information (See Result Details below)

profile

AttributeTypeDescription

id

String

Unique identifier for the profile.

name

String

Name of the profile.

version

Integer

Version number of the profile.

revision

Integer

Revision number of the profile.

state

String

State of the profile (e.g., Test, Active).

result

AttributeTypeDescription

List

List of item check results (See Item Check Result below)

itemCheckResults

AttributeTypeDescription

id

Integer

Unique identifier for the item check result.

name

String

Name or identifier of the item check.

description

String

Description of the item check.

Array

List of result codes (See Result Code below)

Object

Flags object indicating the result status (See Flags below)

resultCode

AttributeTypeDescription

type

String

Type of result code (e.g., Comment or Match).

code

Integer

Numeric code representing the result.

description

String

Description of the result code.

flags

AttributeTypeDescription

pass

String

Status indicating whether the check passed (e.g., Match).

alert

String

Status indicating whether an alert was triggered (e.g., Nomatch).

person

Object

Object is generated during the verification process based on provided input data. It includes various attributes related to an individual's personal information, with each field containing a status flag indicating a match or no match.

Example Response

[
    {
        "timestamp": "2023-10-04T06:25:38.9386341+01:00",
        "authenticationID": "15c6aa68-fae4-4852-a49a-5fbfbdb407ef",
        "profile": {
            "id": "3fe7ba48-ff56-4703-bd8c-961cfcb569c7",
            "name": "0475 Poland ID 1",
            "version": 1,
            "revision": 0,
            "state": "Test"
        },
        "country": "Poland",
        "result": {
            "itemCheckResults": [
                {
                    "id": 475,
                    "name": "Poland ID 1",
                    "description": "Poland identity check searching for a single source match against Forename, Surname, DOB, Address, ID Number, Telephone Number",
                    "resultCodes": [
                        {
                            "type": "Match",
                            "code": 3618,
                            "description": "(Credit) Full Name, DOB, Address and ID Number matched on first source"
                        },
                        {
                            "type": "Match",
                            "code": 3642,
                            "description": "(Commercial) Full Name, DOB, Address and ID Number matched on first source"
                        },
                        {
                            "type": "Match",
                            "code": 3513,
                            "description": "(Credit) Forename valid/matched"
                        },
                        {
                            "type": "Match",
                            "code": 3514,
                            "description": "(Credit) Surname valid/matched"
                        },
                        {
                            "type": "Match",
                            "code": 3515,
                            "description": "(Credit) Date of birth valid/matched"
  

Last updated