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>fffccb5d-857f-40a2-9c77-75808cd31fdf</Id>
  <RecognizedDocumentId>90f1d0aa-77fa-4287-85eb-38d0b4fe93a8</RecognizedDocumentId>
  <SourceFileId>9a44f6b4-ca13-46b3-b4be-87c6643503c6</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "fffccb5d-857f-40a2-9c77-75808cd31fdf",
  "RecognizedDocumentId": "90f1d0aa-77fa-4287-85eb-38d0b4fe93a8",
  "SourceFileId": "9a44f6b4-ca13-46b3-b4be-87c6643503c6",
  "PageNumber": 4
}