You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi , I am new in using JIRA API through python, had a few questions, I am using Jql to get required fields from a particular EPIC but I am only getting 50 results, is there a way I can increase the limit?
Also the fields like summary and decription are being truncated in the dataframe, how can I solve that? Thanks!!
jql = "\"Epic Link\" = ''ABG-463' AND issuetype = Story ORDER BY priority DESC, key DESC MAXRESULTS 200"
Hi Harshita,
"maxResults" should not be included directly in the JQL, rather it should be sent as an additional parameter to the Jira rest api.
depending on what method you are using to make the rest call, it should look something like this:
jira.search_issues(jql, maxResults=1000)
Let me know if this helps, if not, can you please provide the code snippit where you are making the call using your jql string?
Thanks!
Thanks, @omcg
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.