I have a REST operation that retrieves CIs based on type and the result set can be filtered on the REST host side by passing in zero or more additional filters. For example, these queries are all valid:
GET http://cmdb/webservices/ci/Customer
GET http://cmdb/webservices/ci/Customer?city=Madison
GET http://cmdb/webservices/ci/Customer?city=Madison&size=1000
How can I define this rest operation on the vRO side? it seems like it wants a static set of query string variables.