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>df58adbb-146f-47f9-97ed-c607f6d9d180</Id>
  <RecognizedDocumentId>27ff2a3f-b84c-4c98-b170-d7a8f0c757e7</RecognizedDocumentId>
  <SourceFileId>c1364574-8b86-4b0b-ae7f-5279d48c6113</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "df58adbb-146f-47f9-97ed-c607f6d9d180",
  "RecognizedDocumentId": "27ff2a3f-b84c-4c98-b170-d7a8f0c757e7",
  "SourceFileId": "c1364574-8b86-4b0b-ae7f-5279d48c6113",
  "PageNumber": 4
}