Forums » Development »
How to get history of changes made to a redmine ticket
Added by kalpana gutha almost 12 years ago
I am trying to automate some process and was trying to figure our where I can get history of changes made to a ticket. I checked the APIs and did not find anything that I can use in order to get the history. I also tried to look through the database to see in which table the history is stored so I can write a query to get them but was not able to find there either. Can someone help with this? I am specifically interested in getting the list of users made changes to any ticket. Any help would be appreciated.
Replies (2)
RE: How to get history of changes made to a redmine ticket - Added by Etienne Massip almost 12 years ago
There is no REST API for isue hiistory yet but you should be able to find it in tables journal
and journal_details
(or similar names) where type is 'Issue' and journalized_id is the issue id.
RE: How to get history of changes made to a redmine ticket - Added by Nil Patil over 8 years ago
You can use GET /issues/2.xml?include=attachments,journals to get the history details.