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>104d29d6-8f6a-4456-9e82-25e0f86509fd</Id>
  <RecognizedDocumentId>aee45076-95c1-4178-9b10-29a2f6334b64</RecognizedDocumentId>
  <SourceFileId>8c48f541-3de8-4239-b968-d70e7628cdc6</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "104d29d6-8f6a-4456-9e82-25e0f86509fd",
  "RecognizedDocumentId": "aee45076-95c1-4178-9b10-29a2f6334b64",
  "SourceFileId": "8c48f541-3de8-4239-b968-d70e7628cdc6",
  "PageNumber": 4
}