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>061fb203-61da-4649-bffd-a48f8119129e</Id>
  <RecognizedDocumentId>8caec38d-fdaf-4d8e-9f58-4893053b0832</RecognizedDocumentId>
  <SourceFileId>98d754f6-0cd0-4409-9f13-9e070665c29f</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "061fb203-61da-4649-bffd-a48f8119129e",
  "RecognizedDocumentId": "8caec38d-fdaf-4d8e-9f58-4893053b0832",
  "SourceFileId": "98d754f6-0cd0-4409-9f13-9e070665c29f",
  "PageNumber": 4
}