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>2b785b58-fecf-41c4-b50a-98d69e9b904b</Id>
  <RecognizedDocumentId>315f82c3-75af-4451-ac48-0922d008fbae</RecognizedDocumentId>
  <SourceFileId>7915e6c3-9e3d-4fe6-af8c-e2db3b1c8bc8</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "2b785b58-fecf-41c4-b50a-98d69e9b904b",
  "RecognizedDocumentId": "315f82c3-75af-4451-ac48-0922d008fbae",
  "SourceFileId": "7915e6c3-9e3d-4fe6-af8c-e2db3b1c8bc8",
  "PageNumber": 4
}