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>f4a8ebf7-d811-4f94-8524-479c43907e7e</DocumentPageId>
    <DocumentPageId>9c3f06ce-02c5-4229-972e-f36e636a6710</DocumentPageId>
  </DocumentPagesList>
</Result>

application/json, text/json

Sample:
{
  "DocumentPagesList": {
    "List": [
      "f4a8ebf7-d811-4f94-8524-479c43907e7e",
      "9c3f06ce-02c5-4229-972e-f36e636a6710"
    ]
  }
}