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>09f00b13-ca99-419e-b9d8-c40331704f47</Id>
  <RecognizedDocumentId>266c850c-9c47-478c-a262-6a90c6fc69b9</RecognizedDocumentId>
  <SourceFileId>436d6cf3-dd07-465a-9bd5-477c3cb59134</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "09f00b13-ca99-419e-b9d8-c40331704f47",
  "RecognizedDocumentId": "266c850c-9c47-478c-a262-6a90c6fc69b9",
  "SourceFileId": "436d6cf3-dd07-465a-9bd5-477c3cb59134",
  "PageNumber": 4
}