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>77e372cd-22ca-4df8-b8c9-4f241f1aee90</DocumentPageId>
<DocumentPageId>232fc4ea-7138-43a5-bf2e-65c61546c066</DocumentPageId>
</DocumentPagesList>
</Result>
application/json, text/json
Sample:
{
"DocumentPagesList": {
"List": [
"77e372cd-22ca-4df8-b8c9-4f241f1aee90",
"232fc4ea-7138-43a5-bf2e-65c61546c066"
]
}
}