Good day!
I have a question regarding the API for Jira on-premise 7.2.2.
The problem is I have a request that should return me all users that have 'iv' in their name, displayName, email, etc:
rest/api/2/user/assignable/search?project=EF&maxResults=1000&query=iv
But it doesn't work. I'm getting the error: 'The username query parameter was not provided'.
If I change my URL to
rest/api/2/user/assignable/search?project=EF&maxResults=1000&username=iv
It works correctly.
So my questions are:
1. If I'm not mistaken, the query parameter is only available in Jira Cloud?
2. Is there anything I can do to enable the query parameter in my on-premise API?
I appreciate your help
Hey @Сергей,
rest/api/2/user/picker?query=iv
Check out the documentation here.
But it looks like this method only returns users whose names start with 'iv' and not all users who have 'iv' in the middle or at the end of their names.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.