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>b91ea652-8f49-40d5-9fd2-1cc64b89d135</DocumentPageId>
    <DocumentPageId>87432a50-70e0-4ad9-90cb-e107137626d5</DocumentPageId>
  </DocumentPagesList>
</Result>

application/json, text/json

Sample:
{
  "DocumentPagesList": {
    "List": [
      "b91ea652-8f49-40d5-9fd2-1cc64b89d135",
      "87432a50-70e0-4ad9-90cb-e107137626d5"
    ]
  }
}