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>f184b2ea-389e-4bdd-8603-ba1b8d60985b</Id>
  <RecognizedDocumentId>32396eaa-9ccd-4778-a8f4-d4b50702f8ac</RecognizedDocumentId>
  <SourceFileId>9cd87797-41ee-413c-8520-86f85a5b3986</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "f184b2ea-389e-4bdd-8603-ba1b8d60985b",
  "RecognizedDocumentId": "32396eaa-9ccd-4778-a8f4-d4b50702f8ac",
  "SourceFileId": "9cd87797-41ee-413c-8520-86f85a5b3986",
  "PageNumber": 4
}