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>95cd3cae-b561-4494-aa0a-732545cd6388</Id>
  <RecognizedDocumentId>11cca449-a06d-4742-9901-db8e464faf38</RecognizedDocumentId>
  <SourceFileId>3b52fdde-2c1b-411b-9a04-b4e24c8b3699</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "95cd3cae-b561-4494-aa0a-732545cd6388",
  "RecognizedDocumentId": "11cca449-a06d-4742-9901-db8e464faf38",
  "SourceFileId": "3b52fdde-2c1b-411b-9a04-b4e24c8b3699",
  "PageNumber": 4
}