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>bae6f302-ceaf-4d18-b589-28aac3822920</Id>
  <RecognizedDocumentId>046d4f38-6778-487a-8317-a1f90363778c</RecognizedDocumentId>
  <SourceFileId>a49ba9fa-7407-428a-ae15-eaff6d0a9868</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "bae6f302-ceaf-4d18-b589-28aac3822920",
  "RecognizedDocumentId": "046d4f38-6778-487a-8317-a1f90363778c",
  "SourceFileId": "a49ba9fa-7407-428a-ae15-eaff6d0a9868",
  "PageNumber": 4
}