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>2b401672-50be-44d3-88ed-856e7c44f4fd</Id>
  <RecognizedDocumentId>896696ff-ddfa-4ee2-9306-5858362558ea</RecognizedDocumentId>
  <SourceFileId>11c0fea8-69ef-48e3-9778-ee4000a35d29</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "2b401672-50be-44d3-88ed-856e7c44f4fd",
  "RecognizedDocumentId": "896696ff-ddfa-4ee2-9306-5858362558ea",
  "SourceFileId": "11c0fea8-69ef-48e3-9778-ee4000a35d29",
  "PageNumber": 4
}