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>c5dec565-bfa9-4a5b-bb87-bdcec0a150a6</Id>
  <RecognizedDocumentId>c2fe147b-e2f5-40c6-9800-47fb135a95a0</RecognizedDocumentId>
  <SourceFileId>aa598680-d56d-4442-bc64-7d6d53e6f1ec</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "c5dec565-bfa9-4a5b-bb87-bdcec0a150a6",
  "RecognizedDocumentId": "c2fe147b-e2f5-40c6-9800-47fb135a95a0",
  "SourceFileId": "aa598680-d56d-4442-bc64-7d6d53e6f1ec",
  "PageNumber": 4
}