So I am trying to create a little tool for our team that will see when an issues moved to the done column.
Currently I have:
<span>/rest/agile/1.0/board/</span>${boardId}<span>/sprint/</span>${sprintId}<span>/issue?</span>jql=<span>status</span>=Done<span>&expand=changelog</span> as the url to get all done issues with the changelogs. Then I parse the pages of change logs for when it was moved to done.
Is this the best way to do this? Can I use jql on the changelog to only return status event changes so that I don't have to parse though the changelogs many pages?