I need to query on developer app

I want to do something like this:

[https://api.enterprise.apigee.com/v1/o/arity-ccp-nonprod/environments/dev/stats/apiproducts?select=sum(message_count)&timeRange=01%2F01%2F2017+00%3A00~04%2F30%2F2017+23%3A59&filter=(developer_app](https://api.enterprise.apigee.com/v1/o/arity-ccp-nonprod/environments/dev/stats/apiproducts?select=sum(message_count)&timeRange=01%2F01%2F2017+00%3A00~04%2F30%2F2017+23%3A59&filter=(developer_app) eq ‘Tim-HERE’)&timeUnit=month

More specifically how do you filter by developer app something like this: filter=(developer_app eq ‘Tim-HERE’)

@georgeharp your filter expression should work as specified. Are you getting an error?

I just had to URLENcoder.encode the filter between ( and )

Try the following: &filter=(developer_app+eq+‘TIME Here’)

It might help you avoid the encode

1 Like

Thanks that works :slight_smile: