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>a0b24f9e-677e-4719-8047-d3d633c141f2</Id>
  <RecognizedDocumentId>ab2a1943-c54f-43a5-ba65-cbfc6dc44605</RecognizedDocumentId>
  <SourceFileId>cfb5e2b7-65d2-4051-abb9-83c5ee0e3e04</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "a0b24f9e-677e-4719-8047-d3d633c141f2",
  "RecognizedDocumentId": "ab2a1943-c54f-43a5-ba65-cbfc6dc44605",
  "SourceFileId": "cfb5e2b7-65d2-4051-abb9-83c5ee0e3e04",
  "PageNumber": 4
}