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>ef82c4f5-4696-4b5f-98b1-0d976f789703</Id>
  <RecognizedDocumentId>71dd385e-8217-4dcd-ad62-056ff52039bf</RecognizedDocumentId>
  <SourceFileId>4ffcf659-f0e5-4ab3-b92b-0707f523351c</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "ef82c4f5-4696-4b5f-98b1-0d976f789703",
  "RecognizedDocumentId": "71dd385e-8217-4dcd-ad62-056ff52039bf",
  "SourceFileId": "4ffcf659-f0e5-4ab3-b92b-0707f523351c",
  "PageNumber": 4
}