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>52d21d08-34e8-4ba1-8202-8eb8a9003ae7</Id>
  <RecognizedDocumentId>56e24d8a-7128-483c-9bef-98a9fe775adb</RecognizedDocumentId>
  <SourceFileId>00dfa20e-9372-4dea-87bd-ed76fea25d95</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "52d21d08-34e8-4ba1-8202-8eb8a9003ae7",
  "RecognizedDocumentId": "56e24d8a-7128-483c-9bef-98a9fe775adb",
  "SourceFileId": "00dfa20e-9372-4dea-87bd-ed76fea25d95",
  "PageNumber": 4
}