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>3fb6bab0-7bc9-4409-8415-17f1d0ede7de</DocumentPageId>
    <DocumentPageId>23e77815-8b4a-4a4f-be32-9c6c51276d8f</DocumentPageId>
  </DocumentPagesList>
</Result>

application/json, text/json

Sample:
{
  "DocumentPagesList": {
    "List": [
      "3fb6bab0-7bc9-4409-8415-17f1d0ede7de",
      "23e77815-8b4a-4a4f-be32-9c6c51276d8f"
    ]
  }
}