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>f1309d49-9522-4e79-a15f-b4b2f4399185</Id>
  <RecognizedDocumentId>4f62fdf3-7338-4fc8-a5f1-65a1420d003b</RecognizedDocumentId>
  <SourceFileId>ed7b2be5-616c-4d26-8ac3-03228b31ce04</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "f1309d49-9522-4e79-a15f-b4b2f4399185",
  "RecognizedDocumentId": "4f62fdf3-7338-4fc8-a5f1-65a1420d003b",
  "SourceFileId": "ed7b2be5-616c-4d26-8ac3-03228b31ce04",
  "PageNumber": 4
}