Lewis_Beard
2 years agoExpert
string filters in the API (groovy)
In the past I have not had much need of filters in API, and on the rare occasion I have, it has been numeric filters. But for some reason I cannot get string filters to work at all without throwing e...
- 2 years ago
You need to url encode the quotes if they aren’t already. So when you send it, it needs to look like this.
/setting/admins?filter=status%3A%22active%22
Things like Postman auto do that for you.