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>c5bc6b17-d554-4619-a27e-b18787804637</Id>
  <RecognizedDocumentId>fa9db620-01a0-4101-bccb-54ccec54ed9b</RecognizedDocumentId>
  <SourceFileId>4cf33969-3406-461c-9117-2b2d4350d027</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "c5bc6b17-d554-4619-a27e-b18787804637",
  "RecognizedDocumentId": "fa9db620-01a0-4101-bccb-54ccec54ed9b",
  "SourceFileId": "4cf33969-3406-461c-9117-2b2d4350d027",
  "PageNumber": 4
}