...
Code Block | ||
---|---|---|
| ||
<requestSubject> <reportVersion>2</reportVersion> <subjectType>privatePerson</subjectType> <birthNumber>7710109856</birthNumber> <firstName>Jan</firstName> <surname>Novák</surname> <address> <street>Krátká</street> <number>8</number> <city>Praha</city> <zip>10100</zip> </address> <idCard>123456KK</idCard> <checkInExecutionRegistry>1</ checkInExecutionRegistry > <checkInRealEstate>1</checkInRealEstate > <checkInJustitiaCz>1</checkInJustitiaCz> reportVersion </requestSubject> |
request for private person, version 3
Request with the birthDate element (with a relations) is less accurate as request with the birthNumber element.
Code Block | ||
---|---|---|
| ||
<requestSubject>
<reportVersion>3</reportVersion>
<subjectType>privatePerson</subjectType>
<birthDate>10.10.1977</birthDate>
<firstName>Jan</firstName>
<surname>Novák</surname>
<address>
<street>Krátká</street>
<number>8</number>
<city>Praha</city>
<zip>10100</zip>
</address>
<idCard>123456KK</idCard>
<checkInExecutionRegistry>1</ checkInExecutionRegistry >
<checkInRealEstate>1</checkInRealEstate >
<checkInJustitiaCz>1</checkInJustitiaCz>
reportVersion
</requestSubject> |
Element name | datatype | mandatory | reportVersion | relation | Notice |
subjectType | string | yes | privatePerson | ||
birthNumber | string | yes |
| ||
birthDate | string | relation | 3 | Is necessary combine this element with the firstName and the surname elements. | |
firstName | string | yes |
| ||
surname | string | yes |
| ||
address |
|
| Root element for data of address. | ||
street | string | yes |
| ||
number | string | yes |
| ||
city | string | yes |
| ||
zip | string | yes |
| ||
idCard | string | no | 2 | The reportVersion 2 only. | |
reportVersion | string | no | If exist this element and value is 2 then response will contains all relevant data for current data domain. Data will return as collection. Some data domains are unique and collections not exists. Look on current collection. | ||
checkInExecutionRegistry | string | no | 2 | The reportVersion 2 only. When element exists and value is 1 than subject will check in the Execution database. | |
checkInRealEstate | string | no | 2 | The reportVersion 2 only. When element exists and value is 1 than subject will check in the Real estate database. | |
checkInJustitiaCz | string | no | 2 | From 2014/03 and reportVersion 2 only. When element exists and value is 1 than subject wil check in the Justitia CZ registry. |
...