Jira Data Extraction Rest API

2.5k Views Asked by At

I want to extract data using python rest api, but it only allow 200 records at same time is there any way to get all data in Jira que ?

Guessing an export to CSV then pull into excel for reporting might work?

Thanks!

1

There are 1 best solutions below

0
On

Total 200 issues seems to be the default limit of Jira.

If you use any Python package to retrieve data from Jira over REST API, then the limit can be customized.

E.g. with Jira package you can do it simply this way:

from jira.client import JIRA
j = JIRA(options={"server": "https://myjira.domain.com"}, basic_auth=('username', 'password'))
issues = j.search_issues('issuetype = Epic', maxResults=1000)
                                             ^^^^^^^^^^^^^^^

See more information in the documentation: https://jira.readthedocs.io/en/latest/examples.html#searching