Hi
Does anybody have an example of using API V3 input_data to get all requests using a user created View/Filter.
{"list_info": { "row_count": 20, "get_total_count": true, "filter_by": {"name": "Open_System" } } }
which when I encode the does return data, however I think "Open_System" may be a preconfigured View/Filter.
When I change the above to use my user created View it does not work when encoded-
{"list_info": { "row_count": 20, "get_total_count": true, "filter_by": {"name": "Developers" } } }
and fails with:-
{
"response_status": {
"status_code": 4000,
"status": "failed",
"messages": [
{
"field": "filter_by",
"status_code": 4001,
"type": "failed"
}
]
}
}