GET api/Reports/MostAccessedFolders/{numberOfFolders}
Gets specified number of folders that were most accessed by the user.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
numberOfFolders |
Number of folders to return. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
List of AccessedFolderModels.
Collection of ESignSystems.SmartSAFE.Models.Reports.AccessedFolderModelName | Description | Type | Additional information |
---|---|---|---|
FolderId |
Gets or sets the folder identifier. |
integer |
None. |
Name |
Gets or sets the name. |
string |
None. |
ClientName |
Gets or sets the client name. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "FolderId": 1, "Name": "sample string 1", "ClientName": "sample string 2" }, { "FolderId": 1, "Name": "sample string 1", "ClientName": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfAccessedFolderModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Reports"> <AccessedFolderModel> <ClientName>sample string 2</ClientName> <FolderId>1</FolderId> <Name>sample string 1</Name> </AccessedFolderModel> <AccessedFolderModel> <ClientName>sample string 2</ClientName> <FolderId>1</FolderId> <Name>sample string 1</Name> </AccessedFolderModel> </ArrayOfAccessedFolderModel>