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>ce38a455-b158-42b5-9139-698e08cd91da</Id>
  <RecognizedDocumentId>09bb826c-f8a5-4c33-9a32-189333d1569b</RecognizedDocumentId>
  <SourceFileId>d02065bd-796d-4049-9269-89ed015e525f</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "ce38a455-b158-42b5-9139-698e08cd91da",
  "RecognizedDocumentId": "09bb826c-f8a5-4c33-9a32-189333d1569b",
  "SourceFileId": "d02065bd-796d-4049-9269-89ed015e525f",
  "PageNumber": 4
}