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>f39c69dd-ea38-4327-9be6-325954c5b08f</Id>
  <RecognizedDocumentId>de46e825-e4fc-454e-9b42-79b8115de79f</RecognizedDocumentId>
  <SourceFileId>e71ba1ab-ca03-41c1-9cf5-22afb1450ae0</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "f39c69dd-ea38-4327-9be6-325954c5b08f",
  "RecognizedDocumentId": "de46e825-e4fc-454e-9b42-79b8115de79f",
  "SourceFileId": "e71ba1ab-ca03-41c1-9cf5-22afb1450ae0",
  "PageNumber": 4
}