GET api/Reports/SearchCriteria?route={route}

Gets a list of user report search criteria for the report defined by the specified URL-Encoded route.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
route

The route for the report to search for.

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ESignSystems.SmartSAFE.Models.Reports.UserReportSearchCriteriaModel
NameDescriptionTypeAdditional 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

Response Formats

application/json, text/json

Sample:
[
  {
    "UserReportSearchCriteriaId": 1,
    "Route": "sample string 1",
    "Name": "sample string 2",
    "SearchCriteria": "sample string 3"
  },
  {
    "UserReportSearchCriteriaId": 1,
    "Route": "sample string 1",
    "Name": "sample string 2",
    "SearchCriteria": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUserReportSearchCriteriaModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Reports">
  <UserReportSearchCriteriaModel>
    <Name>sample string 2</Name>
    <Route>sample string 1</Route>
    <SearchCriteria>sample string 3</SearchCriteria>
    <UserReportSearchCriteriaId>1</UserReportSearchCriteriaId>
  </UserReportSearchCriteriaModel>
  <UserReportSearchCriteriaModel>
    <Name>sample string 2</Name>
    <Route>sample string 1</Route>
    <SearchCriteria>sample string 3</SearchCriteria>
    <UserReportSearchCriteriaId>1</UserReportSearchCriteriaId>
  </UserReportSearchCriteriaModel>
</ArrayOfUserReportSearchCriteriaModel>