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>64c4c33e-e82b-4d84-878d-06b129f3e788</DocumentPageId>
<DocumentPageId>1f2155f7-d3a9-4bd8-a73a-fb5379f64f21</DocumentPageId>
</DocumentPagesList>
</Result>
application/json, text/json
Sample:
{
"DocumentPagesList": {
"List": [
"64c4c33e-e82b-4d84-878d-06b129f3e788",
"1f2155f7-d3a9-4bd8-a73a-fb5379f64f21"
]
}
}