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>1ac52b51-eec6-418d-87c9-da70fd48db0e</Id>
  <RecognizedDocumentId>d4b4d8f5-ff7a-4559-bc01-61da4b1e1728</RecognizedDocumentId>
  <SourceFileId>8e39c555-2bf0-430d-b07d-ba22349e7fa5</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "1ac52b51-eec6-418d-87c9-da70fd48db0e",
  "RecognizedDocumentId": "d4b4d8f5-ff7a-4559-bc01-61da4b1e1728",
  "SourceFileId": "8e39c555-2bf0-430d-b07d-ba22349e7fa5",
  "PageNumber": 4
}