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>254c64aa-66eb-4d59-a190-eb01374f1cde</Id>
  <RecognizedDocumentId>c64462b6-bc6a-47cc-be0e-2d4364b85124</RecognizedDocumentId>
  <SourceFileId>f1b1e5bb-d7ef-4b4e-8bd2-a4b275b1d85f</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "254c64aa-66eb-4d59-a190-eb01374f1cde",
  "RecognizedDocumentId": "c64462b6-bc6a-47cc-be0e-2d4364b85124",
  "SourceFileId": "f1b1e5bb-d7ef-4b4e-8bd2-a4b275b1d85f",
  "PageNumber": 4
}