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>e6d8e806-b1f6-4c30-9ddc-aa5342688997</Id>
  <RecognizedDocumentId>c7954f12-1581-4466-917e-abfda525f275</RecognizedDocumentId>
  <SourceFileId>190bc64e-14d0-40a0-ab86-3ea3f5c6463c</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "e6d8e806-b1f6-4c30-9ddc-aa5342688997",
  "RecognizedDocumentId": "c7954f12-1581-4466-917e-abfda525f275",
  "SourceFileId": "190bc64e-14d0-40a0-ab86-3ea3f5c6463c",
  "PageNumber": 4
}