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>a413fff5-05d4-41b2-a57c-2bfb5844e6c4</Id>
  <RecognizedDocumentId>362bc68b-679c-40d9-9dc5-5a7800f7ca75</RecognizedDocumentId>
  <SourceFileId>db91e15c-6214-4665-9533-8dc492d3cfd7</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "a413fff5-05d4-41b2-a57c-2bfb5844e6c4",
  "RecognizedDocumentId": "362bc68b-679c-40d9-9dc5-5a7800f7ca75",
  "SourceFileId": "db91e15c-6214-4665-9533-8dc492d3cfd7",
  "PageNumber": 4
}