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>ee6c28e6-1b6e-4e46-a870-b97377c8cbc6</DocumentPageId>
    <DocumentPageId>efbf01d0-2c05-4ed2-bf3b-9286e3f7ac99</DocumentPageId>
  </DocumentPagesList>
</Result>

application/json, text/json

Sample:
{
  "DocumentPagesList": {
    "List": [
      "ee6c28e6-1b6e-4e46-a870-b97377c8cbc6",
      "efbf01d0-2c05-4ed2-bf3b-9286e3f7ac99"
    ]
  }
}