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>6e50f234-5da1-485f-a000-79de09894c45</Id>
  <RecognizedDocumentId>077bfa6e-c305-4460-a255-5b61923611ca</RecognizedDocumentId>
  <SourceFileId>e0cc578c-46be-4d5d-9353-6197eea805ee</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "6e50f234-5da1-485f-a000-79de09894c45",
  "RecognizedDocumentId": "077bfa6e-c305-4460-a255-5b61923611ca",
  "SourceFileId": "e0cc578c-46be-4d5d-9353-6197eea805ee",
  "PageNumber": 4
}