Is it possible to get changelogs of issues for a project on Jira Cloud?
The workflow have approval processes and I would like to get the logs in order to use them for audit.
Thanks,
Dear @Shinsuke Maita ,
you can fetch this with following REST API call:
https://my.server.com/rest/api/3/issue/ABC-1234?expand=changelog
So long
Thomas
Hi @Thomas Deiler ,
Thank you for the information!
Is it possible to get multiple change logs (ex. from ABC-1 to ABC-1234) at the same time with REST API?
Regards,
Shinsuke
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear @Shinsuke Maita ,
sure you can. When you "serach" for issues, the result can be multiple issues and their changelogs.
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We are using search api call, similar to
/rest/api/3/search?expand=names,schema,changelog,transitions&fields=*all&startAt=0&maxResults=100&changelog.startAt=100&jql=project+%3D+{project_name}+order+by+updated+ASC
We have a few issues with histories having more than 100 changelogs. But we are only getting the hundred latest logs. Is there anyway to get the older hundred changlogs using the search api itself.
We need to get the changelogs for all issues in a project and hence have ruled out the use of
/rest/api/3/issue/{key}/changelog?startAt=101&maxResults=100
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also, you can try Issue History. This app lets you get all the changelog ordered by the time period you need. Data from the plugin is available for export.
Regards
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.