Hello,
I was trying to get all issues through jira python API. The total number of issues is 330. I changed the max Results to get all issues but it only return 100 (number of issues per page).
Knowing that i can't change my jira preferences to get more then 100 issues. I want to find out a way to get the 330 issues by python API directly.
Thanks.
issues_in_proj = data.search_issues(jql_str = jql, maxResults=0)
maxResults=0 give me more than 100 results.
Yes it works! Thank you so much!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Fatma
Read this and look at the JRACLOUD link within it as well. We used to be able to get more than 100 results, but not any more.
But ... there is a way to cycle through the additional results using the startAt parameter. So you would need to recursively issue your call, the first time with startAt = 0, then startAt = 100 etc.
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.