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>9a473617-684f-4087-8ff4-9167b26dff57</Id>
  <RecognizedDocumentId>4df0f4d9-98cd-4dda-88ad-0453b84b15f6</RecognizedDocumentId>
  <SourceFileId>1062c1e3-010f-4f79-974b-20ba14f66eba</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "9a473617-684f-4087-8ff4-9167b26dff57",
  "RecognizedDocumentId": "4df0f4d9-98cd-4dda-88ad-0453b84b15f6",
  "SourceFileId": "1062c1e3-010f-4f79-974b-20ba14f66eba",
  "PageNumber": 4
}