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>22bc78ad-87d6-4967-a795-8561f7d6ff0c</Id>
  <RecognizedDocumentId>2e656547-c47d-4fd1-af7c-66a137e9c790</RecognizedDocumentId>
  <SourceFileId>2c9927c6-66ba-4747-9395-951453f23cc7</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "22bc78ad-87d6-4967-a795-8561f7d6ff0c",
  "RecognizedDocumentId": "2e656547-c47d-4fd1-af7c-66a137e9c790",
  "SourceFileId": "2c9927c6-66ba-4747-9395-951453f23cc7",
  "PageNumber": 4
}