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>52049618-2d28-4efa-bfa3-7c04340517a7</Id>
  <RecognizedDocumentId>5fea624c-cf0a-43b5-945f-63d0369729fd</RecognizedDocumentId>
  <SourceFileId>5ede2c9d-f8f0-4ccf-b1a6-b2781383c67b</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "52049618-2d28-4efa-bfa3-7c04340517a7",
  "RecognizedDocumentId": "5fea624c-cf0a-43b5-945f-63d0369729fd",
  "SourceFileId": "5ede2c9d-f8f0-4ccf-b1a6-b2781383c67b",
  "PageNumber": 4
}