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>49def279-9110-458d-b197-8ded1a444382</Id>
  <RecognizedDocumentId>15bcb7bb-c355-4e0a-8723-6e25a8e9496f</RecognizedDocumentId>
  <SourceFileId>99130af1-077e-4982-a5a2-e5b3daa6f968</SourceFileId>
  <PageNumber>4</PageNumber>
</Result>

application/json, text/json

Sample:
{
  "Id": "49def279-9110-458d-b197-8ded1a444382",
  "RecognizedDocumentId": "15bcb7bb-c355-4e0a-8723-6e25a8e9496f",
  "SourceFileId": "99130af1-077e-4982-a5a2-e5b3daa6f968",
  "PageNumber": 4
}