Is there a way to export a list of Projects in JIRA?

Caitlin Bell February 7, 2020

I know where to view my list of Projects, but is there a way to easily export the list to an Excel/CSV file?

4 answers

20 votes
Ravi Sagar _Sparxsys_
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.
February 7, 2020

Hi @Caitlin Bell 

You can use the Jira REST api to get the list of projects.

JIRA_URL/rest/api/latest/project

You will then get a json which you can convert to csv by going to https://json-csv.com/

I hope it helps.

Ravi 

Fabian March 30, 2021

Thanks for the information. I really needed it. 

Odin October 6, 2021

Hi @Ravi Sagar _Sparxsys_ ,

the call brings only the latest projects (not all of them) could you point to call that list all projects 

 

Thanks

Like # people like this
Daka Ayra January 14, 2022

Hi!
I would need this as well.

Thanks, @Ravi Sagar _Sparxsys_ !

Like Sandra Fuchs likes this
milan_shah January 24, 2022

Hi @Ravi Sagar _Sparxsys_ 

Best answer and no need for expensive plugins. thanks

Like Sandra Fuchs likes this
Gauri February 22, 2022

@Ravi Sagar _Sparxsys_ 

How can we get the most visited Project, most active users, etc in JIRA v6.3.11?

Grayson Bishop _SAIC_ April 6, 2022

The "latest" in the URI path refers to the API version- it does not filter the projects that are returned. See https://docs.atlassian.com/software/jira/docs/api/REST/7.6.1/. You could instead use /rest/api/2/project, since "2" is the current version. 

If you aren't seeing all projects it might be because the signed in user does not have the right permissions.

Marcelo Correa September 14, 2022

@Ravi Sagar _Sparxsys_ , thanks for that! Worked like a charm!

Just had to then use something like https://data.page/json/csv to convert it to CSV. 

Like Tom Gross likes this
Nguyen Phi Long January 17, 2023

Thanks @Ravi Sagar _Sparxsys_ 

It's really helpful for me.

Thanks.

10 votes
Levente Szabo _Midori_
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
January 14, 2022

@Daka Ayra 

Another, simpler way of exporting Jira projects to Excel and creating relevant reports is by using the built-in template and export option of Better Excel Exporter. The options exist for both the Jira Data Center (Server) and Jira Cloud versions.

You can generate an Excel report of Jira projects like this in seconds:

jira-project-export.png

jira-projects-export-menu.png

(Please note that Better Excel Exporter is a paid and supported app and I'm part of the team developing it.)

Travis Howard September 8, 2022

Where does this export to? 

Travis Howard September 8, 2022

I found it

Like Levente Szabo _Midori_ likes this
0 votes
Leo Diaz _ DEISER
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 24, 2022

Hi @Caitlin Bell 

 

I'm Leo from DEISER (Solution and Makertplace Partner)

Are you using Jira Data Center? If yes, have you tried Projectrak?
https://confluence.deiser.com/projectrak/8.1.1/export-to-excel-110953960.html 

With Projectrak you can export to excel your projects, also, you can create some script fields like "Date last updates" or "Number of issues", this is an example for "Number of issues":

package deiser.profields.scripts

import com.atlassian.jira.bc.issue.search.SearchService
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.jql.builder.JqlQueryBuilder
import com.atlassian.jira.web.bean.PagerFilter


// Components
def searchService = ComponentAccessor.getOSGiComponentInstanceOfType(SearchService.class)
def jiraAuthenticationContext = ComponentAccessor.jiraAuthenticationContext

// Script variables
def loggedInUser = jiraAuthenticationContext.getLoggedInUser()

// Make JQL query
def query = JqlQueryBuilder.newBuilder()
        .where()
        .project(project.id).and()
        .buildQuery()

// Returns the issue count
return searchService.search(loggedInUser, query, PagerFilter.unlimitedFilter).results.size()

I hope it helps you!

Try Projectrak:
https://marketplace.atlassian.com/apps/1210816/projectrak-project-tracking-for-jira?hosting=datacenter&tab=overview 

Leo

0 votes
kimiya majd June 13, 2020

Hi, @Caitlin Bell 

When you have administration access you can export from Jira in optimizer plugin.

at the first, please download optimizer for Jira from Atlassian marketplace then add it to your Jira, so you can get any export you want.

here is 2 link that I know help you:

https://optimizer.forjira.com/

 

https://marketplace.atlassian.com/apps/1217194/optimizer-for-jira-cleaner-for-jira?hosting=cloud&tab=overview

kimiya majd June 13, 2020

optimizer.png

Shailesh Dhawale December 20, 2022

Suggest an answer

Log in or Sign up to answer