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
NameDescriptionTypeAdditional information
DocumentPagesList

DocumentPagesList

None.

Response Formats

application/xml, text/xml

Sample:
<Result>
  <DocumentPagesList type="sample string 1">
    <DocumentPageId>8081c5e4-f967-4166-8e19-5aa78ddc39f9</DocumentPageId>
    <DocumentPageId>6b26821f-c4f1-4735-8154-0dc934aeb1b8</DocumentPageId>
  </DocumentPagesList>
</Result>

application/json, text/json

Sample:
{
  "DocumentPagesList": {
    "List": [
      "8081c5e4-f967-4166-8e19-5aa78ddc39f9",
      "6b26821f-c4f1-4735-8154-0dc934aeb1b8"
    ]
  }
}