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>05dbf168-e489-425c-bb66-b79e8061aa56</Id>
  <RecognizedDocumentId>28e31bd2-7afa-4459-8656-74f5245e68e3</RecognizedDocumentId>
  <SourceFileId>a78a396c-f2bd-42d2-8c3d-cb4d98bf554e</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "05dbf168-e489-425c-bb66-b79e8061aa56",
  "RecognizedDocumentId": "28e31bd2-7afa-4459-8656-74f5245e68e3",
  "SourceFileId": "a78a396c-f2bd-42d2-8c3d-cb4d98bf554e",
  "PageNumber": 4
}