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>051d1ca8-77c9-459c-855d-b9476bd59c2e</Id>
  <RecognizedDocumentId>923b5907-a8ad-422f-8a5a-e5be2d0b5ecb</RecognizedDocumentId>
  <SourceFileId>9cbd3fdc-bcd0-4ef6-8b2c-4a97c8291790</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "051d1ca8-77c9-459c-855d-b9476bd59c2e",
  "RecognizedDocumentId": "923b5907-a8ad-422f-8a5a-e5be2d0b5ecb",
  "SourceFileId": "9cbd3fdc-bcd0-4ef6-8b2c-4a97c8291790",
  "PageNumber": 4
}