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>f5ff4062-c68a-4359-b768-62b4c1100219</Id>
  <RecognizedDocumentId>818d05a5-4131-41e3-be3a-c71f5023c20e</RecognizedDocumentId>
  <SourceFileId>09b9a17e-d5bc-4096-a866-0f908885460a</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "f5ff4062-c68a-4359-b768-62b4c1100219",
  "RecognizedDocumentId": "818d05a5-4131-41e3-be3a-c71f5023c20e",
  "SourceFileId": "09b9a17e-d5bc-4096-a866-0f908885460a",
  "PageNumber": 4
}