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>e208cf2f-cf5a-4f0e-99c5-76dbcef18a1f</Id>
  <RecognizedDocumentId>ca5b7002-25b7-4b61-a87e-ef9f9ed8cc42</RecognizedDocumentId>
  <SourceFileId>4abd496b-a7a6-4aa2-ae49-1e2742a114d2</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "e208cf2f-cf5a-4f0e-99c5-76dbcef18a1f",
  "RecognizedDocumentId": "ca5b7002-25b7-4b61-a87e-ef9f9ed8cc42",
  "SourceFileId": "4abd496b-a7a6-4aa2-ae49-1e2742a114d2",
  "PageNumber": 4
}