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>742f34b8-8091-49a7-a651-35dce939f72b</Id>
  <RecognizedDocumentId>0b0b0dab-e07a-4585-8f38-13b0dd3434eb</RecognizedDocumentId>
  <SourceFileId>0cf77266-52da-45c7-b385-489921189d06</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "742f34b8-8091-49a7-a651-35dce939f72b",
  "RecognizedDocumentId": "0b0b0dab-e07a-4585-8f38-13b0dd3434eb",
  "SourceFileId": "0cf77266-52da-45c7-b385-489921189d06",
  "PageNumber": 4
}