Overview
An API to get filters definitions for a saved report.
Summary
This endpoint will return all the filters defitions for a saved report.
Request Arguments
None.
Request Example
GET /rest/v10/Reports/:id/filter
Response Arguments
Name |
Type |
Description |
reportDef
|
Array
|
Report def for the chart.
|
runtimeOperators
|
Array
|
All the operators available for reports.
|
users
|
Array
|
All the users available for reports.
|
Response
{
"reportDef":
{
"label":"Accounts by Industry",
"id":"a06b4212-3509-11e7-ab6e-f45c898a3ce7",
...
},
"runtimeOperators":
{
"encrypt": [
"empty": "LBL_IS_EMPTY",
"not_empty": "LBL_IS_NOT_EMPTY",
"equals": "LBL_EQUALS",
"not_equals_str": "LBL_DOES_NOT_EQUAL",
],
"assigned_user_name": [
"is": "LBL_IS",
"is_not": "LBL_IS_NOT",
"one_of": "LBL_ONE_OF",
"empty": "LBL_IS_EMPTY",
"not_empty": "LBL_IS_NOT_EMPTY",
]
...
}
}