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>170635af-ead0-4671-a9f4-7fe460630e42</Id>
  <RecognizedDocumentId>6683c872-1ed6-4a76-a191-10abec50f2bb</RecognizedDocumentId>
  <SourceFileId>b7b0ded8-8d61-49b0-8fa7-fe88d084c147</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "170635af-ead0-4671-a9f4-7fe460630e42",
  "RecognizedDocumentId": "6683c872-1ed6-4a76-a191-10abec50f2bb",
  "SourceFileId": "b7b0ded8-8d61-49b0-8fa7-fe88d084c147",
  "PageNumber": 4
}