Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,553,492
Community Members
 
Community Events
184
Community Groups

Python JIRA API

harshita gupta
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 25, 2023

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"

1 answer

1 accepted

0 votes
Answer accepted

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!

harshita gupta
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 25, 2023 • edited

Thanks, @omcg 

Suggest an answer

Log in or Sign up to answer