GET api_v1/DocumentPages/GetPageProperties?documentPageId={documentPageId}

Запрос полного списка параметров страницы документа.

Request Information

Body Parameters

None.

Response Information

output может быть предоставлен в одном из следующих форматов:

  • json – задает вывод в формате JavaScript Object Notation (JSON)
  • xml – задает вывод в формате XML

Resource Description

DocumentPagePropertiesDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

RecognizedDocumentId

globally unique identifier

None.

SourceFileId

globally unique identifier

None.

PageNumber

integer

None.

Response Formats

application/xml, text/xml

Sample:
<Result>
  <Id>e6c572c9-8f41-4f06-8869-43a2f8898d87</Id>
  <RecognizedDocumentId>8c2f5444-4948-43b2-92df-16c39d842a44</RecognizedDocumentId>
  <SourceFileId>390d0af7-22e3-4be4-81ba-76c7b9456d6e</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "e6c572c9-8f41-4f06-8869-43a2f8898d87",
  "RecognizedDocumentId": "8c2f5444-4948-43b2-92df-16c39d842a44",
  "SourceFileId": "390d0af7-22e3-4be4-81ba-76c7b9456d6e",
  "PageNumber": 4
}