Heads up! On March 5, starting at 4:30 PM Central Time, our community will be undergoing scheduled maintenance for a few hours. During this time, you will find the site temporarily inaccessible. Thanks for your patience. Read more.
×Hi,
I have my custom application and I want when I move issue in JIRA from one status to another (transition) to notify my application somehow. Is this possible and if yes - how?
For example is there some place to create events that do API calls to my application, or would it be possible through custom "Atlassian app" that I can build like those in the marketplace - https://marketplace.atlassian.com/ and then install that app in my JIRA.
The alternative is to make a task/cronjob in my application that every minute does REST API call to JIRA and see what is the current situation to the issues and enter those changes to my database, but I would prefer the first option if it's possible.
Thanks
You could, of course, develop a Jira app that would intercept issue status changes and "notify" your external application, it would be super-flexible, but it is the most work.
Two approaches to implement it super-fast:
Hi Alex,
Welcome to the community. This is Majid @ Exalate.
The choice really depends on how deep an integration you are looking for and the resources available to you. Building a custom integration might look to be as simple as establishing webhooks and a series of API calls, but there is a lot of other factors like queue management and conflict resolution that also come into it.
Hope it helps.
Thanks
Majid
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Alex
What you are looking to do is possible through Stitch It, a new standalone tool from the ScriptRunner team that is built to allow you to create custom integrations between applications.
For your specific use case, you can create a connection to Jira easily using the Managed Connector feature, and a connection to your custom tool using a Generic Connector.
Once you have those connectors, you can create a workspace that uses Event Listeners to listen for issue updates from your specific Jira instance, and then write a script that filters out all updates other than status updates and pushes the status update data to your custom tool through its Rest API.
Stitch It is currently in Beta, which means for now it is free to use. You can create an account and access it here:
and watch a short video on how to use the tool here.
Any questions please ask!
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.