and after quoting the string using Python urllib.parse.quote() my final URL looks like this:
https://{domain}/api/v2/users?q=email%3Ajohn%2A
but the search doesn’t work because urllib.parse.quote() is also quoting the * which isn’t supposed to be quoted according to the List or search users documentation.
How to quote the query string so that the wildcards are not quoted?