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>62a65341-c644-4d32-9e1d-80b36103d168</Id>
  <RecognizedDocumentId>2f8eb9ef-47b4-4f73-8031-6032847c48b1</RecognizedDocumentId>
  <SourceFileId>7bcc4b36-b1e5-4200-9ec3-756e69cf343e</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "62a65341-c644-4d32-9e1d-80b36103d168",
  "RecognizedDocumentId": "2f8eb9ef-47b4-4f73-8031-6032847c48b1",
  "SourceFileId": "7bcc4b36-b1e5-4200-9ec3-756e69cf343e",
  "PageNumber": 4
}