Export all the project names to CSV
Platform Notice: Cloud Only - This article only applies to Atlassian products on the cloud platform.
Summary
This article explains how you can export the Project names to a CSV from Project > View all project page.
Environment
Jira cloud only.
Solution
To export your project list to a CSV file, follow these steps:
Use the Jira REST API to Get the Project List:
Access the Jira REST API endpoint to retrieve the list of projects. You can use the following URL:
ruby
https://abc.atlassian.net/rest/api/latest/project
This will return a JSON response containing the list of projects.
Convert JSON to CSV:
Once you have the JSON data, you can convert it to a CSV format using an online converter.
Visit https://json-csv.com/ and follow the instructions to convert your JSON data to CSV.
Was this helpful?