GET api/Documents/{documentId}/PageImage/{pageNumber}/Size

Allows a user to get the size of the specified document's page images.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
documentId

The document identifier.

integer

Required

pageNumber

The page number.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The specified page image's size (height and width).

ESignSystems.SmartSAFE.Models.SigningRoomManager.Tagging.DocumentPageImageSizeModel
NameDescriptionTypeAdditional information
Width

Gets or sets the page width (in pixels).

integer

None.

Height

Gets or sets the page height (in pixels).

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Width": 1,
  "Height": 2
}

application/xml, text/xml

Sample:
<DocumentPageImageSizeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SigningRoomManager.Tagging">
  <Height>2</Height>
  <Width>1</Width>
</DocumentPageImageSizeModel>