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>619cd9b4-33cc-454d-9260-5fc4ba8a4028</Id>
  <RecognizedDocumentId>393201b1-4ca2-423a-be91-2a23a21b1e17</RecognizedDocumentId>
  <SourceFileId>860dbb5b-b789-432e-a8d9-3c663ac8a794</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "619cd9b4-33cc-454d-9260-5fc4ba8a4028",
  "RecognizedDocumentId": "393201b1-4ca2-423a-be91-2a23a21b1e17",
  "SourceFileId": "860dbb5b-b789-432e-a8d9-3c663ac8a794",
  "PageNumber": 4
}