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>c96be9a3-4ce2-4d82-9cb0-1467146899d2</Id>
  <RecognizedDocumentId>4e77cf15-297b-4e6e-a864-dbf4a1641531</RecognizedDocumentId>
  <SourceFileId>70c39dc8-dc05-4b63-b3a9-c639f6b7c3fe</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "c96be9a3-4ce2-4d82-9cb0-1467146899d2",
  "RecognizedDocumentId": "4e77cf15-297b-4e6e-a864-dbf4a1641531",
  "SourceFileId": "70c39dc8-dc05-4b63-b3a9-c639f6b7c3fe",
  "PageNumber": 4
}