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>29309457-a5f8-4a34-9c7f-339d74763ece</Id>
  <RecognizedDocumentId>48234e7c-1260-4d05-8f64-c6d1d693c9c2</RecognizedDocumentId>
  <SourceFileId>1dec9eca-b7ab-465a-8b0d-1e3e0e0e68d2</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "29309457-a5f8-4a34-9c7f-339d74763ece",
  "RecognizedDocumentId": "48234e7c-1260-4d05-8f64-c6d1d693c9c2",
  "SourceFileId": "1dec9eca-b7ab-465a-8b0d-1e3e0e0e68d2",
  "PageNumber": 4
}