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>2ef66433-328a-45b5-a9ff-987421f4c3ce</Id>
  <RecognizedDocumentId>bfc1a430-f03e-41a7-99e7-efd3212cfe0a</RecognizedDocumentId>
  <SourceFileId>e635776a-be3c-4186-997b-6336047498ca</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "2ef66433-328a-45b5-a9ff-987421f4c3ce",
  "RecognizedDocumentId": "bfc1a430-f03e-41a7-99e7-efd3212cfe0a",
  "SourceFileId": "e635776a-be3c-4186-997b-6336047498ca",
  "PageNumber": 4
}