These 2 return an errors:
https://MyDom.atlassian.net/rest/api/latest/search?jql=project=PROJ+AND+reporter~joe*+AND+status!=Closed https://MyDom.atlassian.net/rest/api/latest/search?jql=project=PROJ+AND+reporter~joe+AND+status!=Closed
This works fine:
https://MyDom.atlassian.net/rest/api/latest/search?jql=project=PROJ+AND+reporter=joe+AND+status!=Closed
Hi,
Firstly, not all fields support text searches (reporter does not apparantly) (for more info which fields support it see the documentation) and when performing search characters with wildcards the documentation states
Wildcard characters need to be enclosed in quote-marks, as they are reserved characters in advanced search. Use quotations, e.g. summary ~ "cha?k and che*"
Keep in mind that when you send the jql as get parameter you will have to urlencode it. Here is an example search with wildcards that works
https://jira.atlassian.com/rest/api/latest/search?jql=project%3D%22Atlassian%20Translations%22%20AND%20summary~%27cas%3F%27
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.