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>7c871f55-7103-4136-b9a9-e1f571da32a1</Id>
  <RecognizedDocumentId>6044a485-e41f-4e3d-8bee-de405e5b4a2b</RecognizedDocumentId>
  <SourceFileId>660f1e7a-6024-446d-8d23-14e9cf61c1cc</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "7c871f55-7103-4136-b9a9-e1f571da32a1",
  "RecognizedDocumentId": "6044a485-e41f-4e3d-8bee-de405e5b4a2b",
  "SourceFileId": "660f1e7a-6024-446d-8d23-14e9cf61c1cc",
  "PageNumber": 4
}