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>dc4dc6f5-f1c1-41c2-9b8a-d1de7da8c738</Id>
  <RecognizedDocumentId>ac96454a-3797-4c5c-b840-74682d557c8a</RecognizedDocumentId>
  <SourceFileId>7ba22734-86ce-4e9c-9f22-6323becb2906</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "dc4dc6f5-f1c1-41c2-9b8a-d1de7da8c738",
  "RecognizedDocumentId": "ac96454a-3797-4c5c-b840-74682d557c8a",
  "SourceFileId": "7ba22734-86ce-4e9c-9f22-6323becb2906",
  "PageNumber": 4
}