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>62e0e1e6-eff7-4896-b018-9458e8f745ef</DocumentPageId>
<DocumentPageId>35786399-804b-4457-bf50-fcb51f6cfdba</DocumentPageId>
</DocumentPagesList>
</Result>
application/json, text/json
Sample:
{
"DocumentPagesList": {
"List": [
"62e0e1e6-eff7-4896-b018-9458e8f745ef",
"35786399-804b-4457-bf50-fcb51f6cfdba"
]
}
}