GET visit/getEDocData?MACs={MACs}&Token={Token}
Get an eDoklad from the virtual counter. The document can be available in up to 5 minutes.
Request Information
Authorization
- Authorization by token required
Availability
- Method can be used
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| MACs |
Coma separated MAC addresses |
string |
Required |
| Token |
The action is authorized by this token. Token should generated by calling action "POST login". Expiration time of each token is 20 seconds |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Response Codes
| Http Code | Error Number | Description |
|---|---|---|
| 200 request succesfully done | 0 | Successfully done |
| 400 bad request | 1002 | Entry parameter missing or parameter bindigs failed |
| 401 unauthorized | 1000 | Token {0} not found |
| 401 unauthorized | 1001 | Token {0} already expired |
| 401 unauthorized | 1006 | Ip filter violated for ip client address [{0}] |
| 401 unauthorized | 1007 | Ip filter [{0}] parsing failed |
| 401 unauthorized | 1008 | Request rate policy violated for [{0}] |
| 403 server refuses fo fulfill the request | 8 | Not licensed |
| 404 required resource does not exist on the server | 1534 | Kiosk not found |
| 415 unsupported Media Type | The request entity has a media type which the server or resource does not support. Only application/json and application/xml are supported | |
| 500 internal error | Server exception description |
Resource Description
VisitGetEDocDataResp| Name | Description | Type | Additional information |
|---|---|---|---|
| Document |
Document obtained from the eDoklady counter, null if the document has not yet been obtained. |
VisitDocument |
None. |
Response Formats
application/json, text/json
Sample:
{
"Document": {
"Nationality": "sample string 1",
"Sex": 2,
"Name": "sample string 1",
"Surname": "sample string 2",
"DocNumber": "sample string 3",
"DocType": 4,
"DateOfBirth": "2026-05-25T05:58:17.6861747+02:00",
"DateExpiration": "2026-05-25T05:58:17.6861747+02:00",
"State": "sample string 5"
}
}
application/xml, text/xml
Sample:
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Document>
<Nationality>sample string 1</Nationality>
<Sex>2</Sex>
<Name>sample string 1</Name>
<Surname>sample string 2</Surname>
<DocNumber>sample string 3</DocNumber>
<DocType>4</DocType>
<DateOfBirth>2026-05-25T05:58:17.6861747+02:00</DateOfBirth>
<DateExpiration>2026-05-25T05:58:17.6861747+02:00</DateExpiration>
<State>sample string 5</State>
</Document>
</Response>