-
Suggestion
-
Resolution: Unresolved
-
None
-
None
-
0
-
Hello,
It was quite confusing to find out that the Jira Server REST API endpoint for users search /rest/api/2/user/search does not have any pagination. I think it will be helpful to add pagination properties for cases when search result returns more than 1,000 users. This will allow to collect results in a proper way without sending unnecessary queries back to the server.
- is cloned from
-
JRASERVER-71380 Enable pagination on users search REST API
- Gathering Interest
Sorry. I can not change the description...
this issue is about the REST command:
/rest/api/2/user/assignable/search?issueKey=" & sIssueKey & "&query=" & sQuery & "&startAt=0&maxResults=1000".
Issues:
Description is available here:
[The Jira Cloud platform REST API
As workaround I'm using the command:
"/rest/api/2/user/picker?query=" & sQuery & "&startAt=0&maxResults=1000"
which is working fine, but list all filtered users without assignability dependency.