Identity Card Verification

What kind of data I will get

By using this integration, you can check the correctness of the identity data provided by customer in the identity cards registry which is a public registry having information about all polish identity cards.

In response, you will receive a flag telling you if the data provided in the input are correct and exist in registry.

Input

{
    "firstName": "Jan",
    "secondName": "Maria",
    "surnameFirstPart": "Kowalski",
    "surnameSecondPart": "Herbut",
    "pesel": "07061552938",
    "idCardSeriesAndNumber": "YTT107024",
    "productionDate": "2014-09-24",
    "expirationDate": "2024-09-24",
}

Mandatory fields:

  • firstName

  • surnameFirstPart

  • pesel

  • idCardSeriesAndNumber

  • productionDate

  • expirationDate

Optional fields:

  • secondName

  • surnameSecondPart

Response Content

Table 1. krd.idCardVerification

FieldTypeDescription

isValid

boolean

Indicates whether the id card is valid or not

Example response

{
    "krd": {
        "idCardVerification": {
            "isValid": true
        }
    },
    "rawResponses": {
        "krd": {
            "idCardVerification": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><ns4:IDCardResponse xmlns=\"http://krd.pl/Faults\" xmlns:ns6=\"http://krd.pl/Chase3.1/Dto\" xmlns:ns5=\"http://krd.pl/Rastin/Fault\" xmlns:ns7=\"http://krd.pl/Chase3.1/Fault\" xmlns:ns2=\"http://krd.pl/Authorization/Response\" xmlns:ns4=\"http://krd.pl/Rastin/Dto\" xmlns:ns3=\"http://krd.pl/Authorization\"><ns4:IsValid>true</ns4:IsValid></ns4:IDCardResponse>"
        }
    },
}

Sandbox test input

Last updated