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>b57acef4-044c-455b-a3a7-b8f2c5c8df90</Id>
  <RecognizedDocumentId>d01af490-c58d-44cf-836c-799c4a0f75b4</RecognizedDocumentId>
  <SourceFileId>1101519e-b73a-42c1-aeb9-32aee0ab2563</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "b57acef4-044c-455b-a3a7-b8f2c5c8df90",
  "RecognizedDocumentId": "d01af490-c58d-44cf-836c-799c4a0f75b4",
  "SourceFileId": "1101519e-b73a-42c1-aeb9-32aee0ab2563",
  "PageNumber": 4
}