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>859df300-08a0-48ba-8e40-87a2ffbb47f4</Id>
  <RecognizedDocumentId>7930c565-c494-464f-9bdf-a3dbc0c8434e</RecognizedDocumentId>
  <SourceFileId>9958a9e9-7456-4759-bdba-9280d373caac</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "859df300-08a0-48ba-8e40-87a2ffbb47f4",
  "RecognizedDocumentId": "7930c565-c494-464f-9bdf-a3dbc0c8434e",
  "SourceFileId": "9958a9e9-7456-4759-bdba-9280d373caac",
  "PageNumber": 4
}