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>fb4f5a0c-e7e6-4267-a0af-257d2cf12eba</DocumentPageId>
<DocumentPageId>7f8d451f-dc9e-42eb-8789-670c12dd581a</DocumentPageId>
</DocumentPagesList>
</Result>
application/json, text/json
Sample:
{
"DocumentPagesList": {
"List": [
"fb4f5a0c-e7e6-4267-a0af-257d2cf12eba",
"7f8d451f-dc9e-42eb-8789-670c12dd581a"
]
}
}