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>a225cf4f-eba2-474b-9134-d9591484ee8c</Id>
  <RecognizedDocumentId>f3afc223-9f0f-496a-90c5-3b884b2d9400</RecognizedDocumentId>
  <SourceFileId>9be1162e-39f0-4aff-adec-4d017aa64f04</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "a225cf4f-eba2-474b-9134-d9591484ee8c",
  "RecognizedDocumentId": "f3afc223-9f0f-496a-90c5-3b884b2d9400",
  "SourceFileId": "9be1162e-39f0-4aff-adec-4d017aa64f04",
  "PageNumber": 4
}