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>2b1dd07f-7a05-4037-bedb-7f268353ba32</Id>
  <RecognizedDocumentId>2140edc4-796a-4db6-accc-2d2fcd62d0bb</RecognizedDocumentId>
  <SourceFileId>6530be82-a414-4ac3-a74a-d7da110678f6</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "2b1dd07f-7a05-4037-bedb-7f268353ba32",
  "RecognizedDocumentId": "2140edc4-796a-4db6-accc-2d2fcd62d0bb",
  "SourceFileId": "6530be82-a414-4ac3-a74a-d7da110678f6",
  "PageNumber": 4
}