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>682a7e6f-aa0b-4ceb-92ef-309181e90b6a</Id>
  <RecognizedDocumentId>b63da84d-bf9d-4a29-9e2c-52b079b8556e</RecognizedDocumentId>
  <SourceFileId>aadf9df1-c801-4550-8c33-e9b0113c7f60</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "682a7e6f-aa0b-4ceb-92ef-309181e90b6a",
  "RecognizedDocumentId": "b63da84d-bf9d-4a29-9e2c-52b079b8556e",
  "SourceFileId": "aadf9df1-c801-4550-8c33-e9b0113c7f60",
  "PageNumber": 4
}