Hi @ts_fpatterson ,
Check the filters parameter format. The query syntax might be slightly different. Sometimes, you need to ensure proper URL encoding.
For Ex:, spaces should be replaced with %20, but depending on the API, you might need to use + for spaces. You can try:
Hi @ts_fpatterson
Please try using the other way.
I tried https://{tenant}.api.identitynow.com/v3/sources?filters=connectionType ne \"direct\" in my python scripts using requests module and if you’re using http.client module, please try conn.request("GET", "/v3/sources?filters=connectionType%20ne%20%22direct%22", payload, headers).
conn = http.client.HTTPSConnection("{tenant}.api.identitynow.com") for reference.
Thanks!
In doing some further research, when using the requests library in Python to make API requests with query parameters, you generally don’t need to manually encode special characters in the parameter values. The requests library handles the URL encoding for you automatically.