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>de67f1bb-9197-42a7-b4e0-c27d462a64ae</Id>
  <RecognizedDocumentId>20d00de8-dccd-4a8a-8ff9-0a4a2d59c1f2</RecognizedDocumentId>
  <SourceFileId>771c01a5-cc81-46d5-8688-572f43949340</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "de67f1bb-9197-42a7-b4e0-c27d462a64ae",
  "RecognizedDocumentId": "20d00de8-dccd-4a8a-8ff9-0a4a2d59c1f2",
  "SourceFileId": "771c01a5-cc81-46d5-8688-572f43949340",
  "PageNumber": 4
}