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>952f826a-70cc-413d-acb5-2b295ece6b5b</Id>
  <RecognizedDocumentId>524a0ec3-4eef-4d92-a8e5-6e306a23e72a</RecognizedDocumentId>
  <SourceFileId>409ac4b1-f3a9-4747-996b-873f146afa00</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "952f826a-70cc-413d-acb5-2b295ece6b5b",
  "RecognizedDocumentId": "524a0ec3-4eef-4d92-a8e5-6e306a23e72a",
  "SourceFileId": "409ac4b1-f3a9-4747-996b-873f146afa00",
  "PageNumber": 4
}