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>510673b7-8ee3-464c-baa8-a4fbd2406b3b</Id>
  <RecognizedDocumentId>fc52c5c2-5022-4c5d-b56c-8df8b08f583b</RecognizedDocumentId>
  <SourceFileId>a10d8908-bbe7-4d10-b6e0-c29d911b0a7f</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "510673b7-8ee3-464c-baa8-a4fbd2406b3b",
  "RecognizedDocumentId": "fc52c5c2-5022-4c5d-b56c-8df8b08f583b",
  "SourceFileId": "a10d8908-bbe7-4d10-b6e0-c29d911b0a7f",
  "PageNumber": 4
}