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>58cf63d8-16ca-4f39-969b-03c601a49bd7</Id>
  <RecognizedDocumentId>6132cd9e-b4fc-464a-854c-4f4fe881ae90</RecognizedDocumentId>
  <SourceFileId>9cf13a31-fda0-47a6-b2cb-46512566f567</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "58cf63d8-16ca-4f39-969b-03c601a49bd7",
  "RecognizedDocumentId": "6132cd9e-b4fc-464a-854c-4f4fe881ae90",
  "SourceFileId": "9cf13a31-fda0-47a6-b2cb-46512566f567",
  "PageNumber": 4
}