Hello, everyone
How can I ignore case sensitiveness of query parameter during getting groups with the help /rest/api/2/groups/picker?
Right now:
/rest/api/2/groups/picker?query=aaa returns group Test aaa.
/rest/api/2/groups/picker?query=aAa returns group Test aAa.
What I need is - get both groups (Test aaa and Test aAa ) using rest/api/2/groups/picker?query=aaa or rest/api/2/groups/picker?query=AAA
Thanks.
I created a similar ticket and the response is:
Not possible, unfortunately. But there's a feature request to bring this to Cloud:
JRACLOUD-71706: Make group picker case insensitive for /rest/api/3/groups/picker
Watch the ticket to be kept updated on the progress of the feature.
Hi Natalia,
One thing you can do is change the = to a ~ which performs a fuzzy search. If I search with the = sign I get one result:
{"header":"Showing 1 of 1 matching groups","total":1,"groups":[{"name":"aaa","html":"<b>aaa</b>","labels":[]}]}
When I use the tilde I get multiple results:
{"header":"Showing 3 of 3 matching groups","total":3,
"groups":[{"name":"aaa","html":"aaa","labels":[]},
{"name":"jira-administrators","html":
"jira-administrators","labels":
[{"text":"Admin","title":"Users added to this group will be given administrative access","type":"ADMIN"},
{"text":"JIRA Software","title":"Users added to this group will be given access to <strong>JIRA Software</strong>","type":"SINGLE"}]},
{"name":"jira-software-users","html":"jira-software-users","labels":
[{"text":"JIRA Software","title":"Users added to this group will be given access to <strong>JIRA Software</strong>","type":"SINGLE"}]}]}
For more information about searching in JIRA see the Search syntax for text fields knowledge base article.
Cheers,
Branden
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When changing ?query= to a ?query~ in REST API URL it does not performs a fuzzy search, but instead returns all values.
You can try that by adding completely different query.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.