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>c1efc99b-97d5-446d-815b-36277f89ada2</Id>
  <RecognizedDocumentId>dfd5af5c-37f3-45d1-a523-ab00fee26a97</RecognizedDocumentId>
  <SourceFileId>151343da-dc45-405d-b3ab-cf919a075c5e</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "c1efc99b-97d5-446d-815b-36277f89ada2",
  "RecognizedDocumentId": "dfd5af5c-37f3-45d1-a523-ab00fee26a97",
  "SourceFileId": "151343da-dc45-405d-b3ab-cf919a075c5e",
  "PageNumber": 4
}