...
Element name | datatype | mandatory | Notice |
errorId | GUID as string | yes | Id for matching our error db inside |
message | string | yes | Short information about error. |
List of error messages.
error number | error description | Notice | |
01 | unknown subject type | Unknown subjekt type inside the <requestSubject> <subjectType>privatePerson</subjectType> element | |
02 | invalid input | Input request is not valid. |
Error messages for CEECR data
There are following error messages inside CEECR element:
101 - Nemáte povolený přístup k datům CEECR.
102 - CEECR endpoint error.
103 - Nepodarilo se ziskat data.
It means:
101 – error when your access to CEECR is disallowed
102 – error if the CEECR interface (third party interface) has error or is not working
103 – when our system has a problem when generating data. Exactly information is on demand. Error Id is necessary.
If you have question about error a 102 and a 103 you must identified error by error id everytime.
Example for error 102
Code Block | ||
---|---|---|
| ||
<creditCheck version="1.0" encoding="utf-8" xmlns="">
<webMethod>GetSubjectBasicReport</webMethod>
<time>2014-08-18T10:42:09.8941151+02:00</time>
<requestId>fefdcf1e-847f-4495-96dd-1b3580832118</requestId>
<requestSubject>
<reportVersion>2</reportVersion>
<subjectType>privatePerson</subjectType>
<birthNumber>6055240279</birthNumber>
<firstName>Drahuše</firstName>
<surname>Andělová</surname>
<address>
<street>Ječná</street>
<number>661</number>
<city>Miretice u Klášterec nad Ohří</city>
<zip>43151</zip>
</address>
<idCard>108254997</idCard>
<checkInExecutionRegistry>1</checkInExecutionRegistry>
</requestSubject>
<report>
<status>4</status>
<birthNumber>6055240279</birthNumber>
<firstName>Drahuše</firstName>
<surname>Andělová</surname>
<idCard>OK</idCard>
<ceecr>
<remaining_credit>0</remaining_credit>
<currentCredit>0</currentCredit>
<error>
<errorId>6a16a542-9951-4d29-b1b0-2f32b45c652c</errorId>
<message>102 - CEECR endpoint error.</message>
<description>Kontaktujte administrátora Credit Check, s.r.o.</description>
</error>
</ceecr>
</report>
</creditCheck> |
Important notices
This section is under development. But here is base envelope for it.
...