We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The docs claim that authorities and destinations GET API calls can be filtered using the filter query param:
filter – key value pair. format is k=v;
But the actual implementation splits k and v using ';' characters in the corresponding service.py
if filt: terms = filt.split(';')
I got my queries working using ; but the docs are wrong.
The text was updated successfully, but these errors were encountered:
This should be fixed. Thanks!
Sorry, something went wrong.
No branches or pull requests
The docs claim that authorities and destinations GET API calls can be filtered using the filter query param:
filter – key value pair. format is k=v;
But the actual implementation splits k and v using ';' characters in the corresponding service.py
if filt:
terms = filt.split(';')
I got my queries working using ; but the docs are wrong.
The text was updated successfully, but these errors were encountered: