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>e42fc202-5d8d-4c9f-88cf-dfdb01f1e213</Id>
  <RecognizedDocumentId>09474849-30b1-4929-9754-862b19c5e5da</RecognizedDocumentId>
  <SourceFileId>3c5c2424-d1a8-4f45-b0cb-c2aea6c3820b</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "e42fc202-5d8d-4c9f-88cf-dfdb01f1e213",
  "RecognizedDocumentId": "09474849-30b1-4929-9754-862b19c5e5da",
  "SourceFileId": "3c5c2424-d1a8-4f45-b0cb-c2aea6c3820b",
  "PageNumber": 4
}