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>a49679e3-1633-4aa6-95a3-9cebd0a065f4</Id>
  <RecognizedDocumentId>03487bac-ffc8-4d4d-ad7d-004ecd859d77</RecognizedDocumentId>
  <SourceFileId>49eacfb6-a14b-4fb2-bdae-9a889ea37d1f</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "a49679e3-1633-4aa6-95a3-9cebd0a065f4",
  "RecognizedDocumentId": "03487bac-ffc8-4d4d-ad7d-004ecd859d77",
  "SourceFileId": "49eacfb6-a14b-4fb2-bdae-9a889ea37d1f",
  "PageNumber": 4
}