POST api/Reports/SearchCriteria
Searches the web service logs given the supplied search parameters
Request Information
URI Parameters
None.
Body Parameters
WebServiceLogSearchCriteria
ESignSystems.SmartSAFE.Models.Reports.UserReportSearchCriteriaModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserReportSearchCriteriaId |
Gets or sets the id of the user report search criteria. |
integer |
None. |
| Route |
Gets or sets the route of the report associated to the report search criteria. |
string |
Required Max length: 256 |
| Name |
Gets or sets the name of the report search criteria. |
string |
Required Max length: 256 |
| SearchCriteria |
Gets or sets a json string representing the saved report search criteria. |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"UserReportSearchCriteriaId": 1,
"Route": "sample string 1",
"Name": "sample string 2",
"SearchCriteria": "sample string 3"
}
application/xml, text/xml
Sample:
<UserReportSearchCriteriaModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Reports"> <Name>sample string 2</Name> <Route>sample string 1</Route> <SearchCriteria>sample string 3</SearchCriteria> <UserReportSearchCriteriaId>1</UserReportSearchCriteriaId> </UserReportSearchCriteriaModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of web service logs.
ESignSystems.Core.Results.OperationResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Succeeded | boolean |
None. |
|
| Content | Object |
None. |
|
| Errors | Collection of string |
None. |
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.