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>079643f0-3e94-4185-a445-432f5c8f2cc5</DocumentPageId>
    <DocumentPageId>e258f31b-2c63-46be-ae64-caa53c864d0a</DocumentPageId>
  </DocumentPagesList>
</Result>

application/json, text/json

Sample:
{
  "DocumentPagesList": {
    "List": [
      "079643f0-3e94-4185-a445-432f5c8f2cc5",
      "e258f31b-2c63-46be-ae64-caa53c864d0a"
    ]
  }
}