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>a24a3eb4-9c58-4eb8-964c-0e291f40025a</Id>
  <RecognizedDocumentId>4ab2e1fc-d49c-428a-97ba-42f67666ea34</RecognizedDocumentId>
  <SourceFileId>476dcb1e-842a-40ea-bd3f-da7a67304eea</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "a24a3eb4-9c58-4eb8-964c-0e291f40025a",
  "RecognizedDocumentId": "4ab2e1fc-d49c-428a-97ba-42f67666ea34",
  "SourceFileId": "476dcb1e-842a-40ea-bd3f-da7a67304eea",
  "PageNumber": 4
}