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>953dd1a2-df8a-451a-bb22-5a415a7ab769</Id>
  <RecognizedDocumentId>0e35c8bd-cea8-4233-9ecb-9557ef352d3c</RecognizedDocumentId>
  <SourceFileId>aadb8d7d-60c8-4c87-9f89-e4a9e4f7d62d</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "953dd1a2-df8a-451a-bb22-5a415a7ab769",
  "RecognizedDocumentId": "0e35c8bd-cea8-4233-9ecb-9557ef352d3c",
  "SourceFileId": "aadb8d7d-60c8-4c87-9f89-e4a9e4f7d62d",
  "PageNumber": 4
}