Is there a way to export release data into csv or xls? I can go to the Releases section and can filter by name but I cannot find an easy way to export the data on the page (Version, Status, Start Date, Release Date, Description). The reason I need this data is that we run custom reports via Excel and we require that this release data be in one of spreadsheets.
Hi @Ryan Lagola ,
Welcome to the Community!
I am not sure about an export option within Jira itself, but there's a REST API endpoint to get all the versions of a project:
https://docs.atlassian.com/software/jira/docs/api/REST/8.22.0/#project-getProjectVersions
Personally, I'd use that along with a small python script to get a releases CSV. It should have all the info you need:
{ "self": "http://www.example.com/jira/rest/api/2/version/10000",
"id": "10000",
"description": "An excellent version",
"name": "New Version 1",
"archived": false,
"released": true,
"releaseDate": "2010-07-06",
"overdue": true,
"userReleaseDate": "6/Jul/2010",
"projectId": 10000
}
Hope that helps,
Oliver
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.