Forums

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

Is it possible to find the date that a FixVersion was actually released via the Restful API

Ian Rees
Contributor
October 17, 2022

Is it possible to find the date that a FixVersion was actually released via the Restful API.  I know that you can get the toggle as to whether it is Released/Unreleased and the Release Date.  however, the Release Date can be overidden so doesn't necessarily correlate to to the state change from Unreleased to Released.  Is it possible to get that ?

Thanks

2 answers

1 vote
Bill Sheboy
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.
October 17, 2022

Hi @Ian Rees 

If you want the specific date/time of the changes for a version please check the audit log entries, searching and parsing as needed.  Access to this information may be subject to your Jira site permissions and how much of the audit log is retained over time.

https://docs.atlassian.com/software/jira/docs/api/REST/1000.824.0/#api/2/auditing-getRecords

Kind regards,
Bill

0 votes
Vikrant Yadav
Community Champion
October 17, 2022

Hi @Ian Rees  Yeah, you can easily get the list of Version in a project using below URL :-

 

YOUR_JIRA_URL/rest/api/2/project/{projectIdOrKey}/versions

It gives you complete list of released and unreleased version for a project. If you convert json data to csv , For Released versions, Release date mentioned under Release Date column. 

 

Thanks

V.Y 

Ian Rees
Contributor
October 17, 2022

Thanks Vikrant - I don't think I explained my question very well.  I can do all of that but what I really want to get is the date/time that a Fix Version transitioned to Released from Unreleased.  The Release Date may be that but it also maybe something that the user has just typed in - does that make sense?

It's pretty much how in the changelog for an issue you can see the time and date that an issue has transitioned between states.  I'd like to know the date and time that a version transitioned between Unrelease and Released.

Suggest an answer

Log in or Sign up to answer