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>7f9b4970-4a17-478c-9022-76c340f61a08</Id>
  <RecognizedDocumentId>4599a0c7-fcf0-45e3-ae76-b6e2cf5e4be5</RecognizedDocumentId>
  <SourceFileId>fe9d868f-b19f-45a8-871a-f7ae17aab70c</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "7f9b4970-4a17-478c-9022-76c340f61a08",
  "RecognizedDocumentId": "4599a0c7-fcf0-45e3-ae76-b6e2cf5e4be5",
  "SourceFileId": "fe9d868f-b19f-45a8-871a-f7ae17aab70c",
  "PageNumber": 4
}