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>7444c109-6143-4971-a0e7-81b2c87da146</Id>
  <RecognizedDocumentId>87288b1c-0f1d-498c-b5f9-7fe7f8cc9ba3</RecognizedDocumentId>
  <SourceFileId>4c7610b5-545f-4176-97d6-63bd0411833a</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "7444c109-6143-4971-a0e7-81b2c87da146",
  "RecognizedDocumentId": "87288b1c-0f1d-498c-b5f9-7fe7f8cc9ba3",
  "SourceFileId": "4c7610b5-545f-4176-97d6-63bd0411833a",
  "PageNumber": 4
}