GET api/Reports/LastAccessedSigningRooms/{numberOfRooms}
Gets specified number of SigningRooms that were last accessed by the user.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| numberOfRooms |
Number of rooms to return. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
List of AccessedSigningRoomModel.
Collection of ESignSystems.SmartSAFE.Models.Reports.AccessedSigningRoomModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SigningRoomId |
Gets or sets the SigningRoom id. |
integer |
None. |
| SigningRoomName |
Gets or sets the SigningRoom name. |
string |
None. |
| SigningRoomAccessedDate |
Gets or sets the date SigningRoom was accessed. |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SigningRoomId": 1,
"SigningRoomName": "sample string 2",
"SigningRoomAccessedDate": "2026-01-01T17:33:34.5553086-05:00"
},
{
"SigningRoomId": 1,
"SigningRoomName": "sample string 2",
"SigningRoomAccessedDate": "2026-01-01T17:33:34.5553086-05:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfAccessedSigningRoomModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Reports">
<AccessedSigningRoomModel>
<SigningRoomAccessedDate>2026-01-01T17:33:34.5553086-05:00</SigningRoomAccessedDate>
<SigningRoomId>1</SigningRoomId>
<SigningRoomName>sample string 2</SigningRoomName>
</AccessedSigningRoomModel>
<AccessedSigningRoomModel>
<SigningRoomAccessedDate>2026-01-01T17:33:34.5553086-05:00</SigningRoomAccessedDate>
<SigningRoomId>1</SigningRoomId>
<SigningRoomName>sample string 2</SigningRoomName>
</AccessedSigningRoomModel>
</ArrayOfAccessedSigningRoomModel>