GET api_v1/RecognizedDocuments/GetDocumentPagesList?recognizedDocumentId={recognizedDocumentId}
Запрос списка идентификаторов страниц документа, из которых он был получен
Request Information
Body Parameters
None.
Response Information
output может быть предоставлен в одном из следующих форматов:
- json – задает вывод в формате JavaScript Object Notation (JSON)
- xml – задает вывод в формате XML
Resource Description
DocumentPagesListDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| DocumentPagesList | DocumentPagesList |
None. |
Response Formats
application/xml, text/xml
Sample:
<Result>
<DocumentPagesList type="sample string 1">
<DocumentPageId>bad56d95-a069-4f9e-8ebf-c46415f445c1</DocumentPageId>
<DocumentPageId>4f3a20db-ec62-4cb4-abba-724789392a2a</DocumentPageId>
</DocumentPagesList>
</Result>
application/json, text/json
Sample:
{
"DocumentPagesList": {
"List": [
"bad56d95-a069-4f9e-8ebf-c46415f445c1",
"4f3a20db-ec62-4cb4-abba-724789392a2a"
]
}
}