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>49cbcd2a-6f30-4ef4-8c75-947aa1a31bdb</Id>
  <RecognizedDocumentId>72c1a1ad-78b1-49b1-b72d-1dc6fb9b7af5</RecognizedDocumentId>
  <SourceFileId>c2c97cc4-f099-405a-872a-51b8b463d8d9</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "49cbcd2a-6f30-4ef4-8c75-947aa1a31bdb",
  "RecognizedDocumentId": "72c1a1ad-78b1-49b1-b72d-1dc6fb9b7af5",
  "SourceFileId": "c2c97cc4-f099-405a-872a-51b8b463d8d9",
  "PageNumber": 4
}