My application should execute some logic each time new issue is added to Jira. I guess the only option for me is to request last added issues every n seconds and find out which issues are new. I am investigating Jira REST API but can’t find there any method for retrieving last issues. Is it possible?
Share
I had to do something similar, eventually I used the Jira Scripting Suite since it was easier. I’ve added a Jython post function to “Create issue” transition.
This way, any time a new issue will be added, your script will run.
Does it answer your needs?