Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Unable to download issue

Sudarshan Singh
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!
August 21, 2025

Hi, 

I can view a list of issues under Project. When I am trying to download these issues using JIRA API using python, It's returning 0 results. I have verified the validation of API token and permission. 

 

jql_query = 'project = "XYZ" AND statusCategory = Done ORDER BY created DESC'
print(f"Fetching Jira test cases with JQL : {jql_query}")
# Use the jql() method. Note the 'limit' parameter.
search_results = jira_client.search_issues(jql_query)
print(f"✅ Found {len(search_results)} issues.")
# Access the list of issues from the 'issues' key in the result
list_of_issues = search_results['issues']

1 answer

0 votes
Jaime Escribano
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 21, 2025

Hi @Sudarshan Singh and welcome to the community :)

 

Does your API call return a 200 message? Are you using this endpoint or a different one?
The Jira Cloud platform REST API

 

Let's see if we can get this fixed!

Suggest an answer

Log in or Sign up to answer