How can we push details from Jira. For e.g. i create a project in Jira and capture issue creation details and the same not only creates issue in this particular project but also pushes data to some application to consume at its end. In turn, i also want to consume response received from that application and update this ticket.
In short, I want to use Jira to just capture details and push it to some application that processes and closes ticket and once done, Jira consumes information and close ticket here as well.
You have a few options here especially when bringing in third-party plugins, but natively within Jira, you probably firstly want to create a webhook that calls your application, then choose when to execute this by editing the post function that is called when the ticket is created.
Here's the docs which go into a lot more detail: https://developer.atlassian.com/cloud/jira/platform/webhooks/
Automation for Jira also has all of this built into it's UI, so it's a lot easier to configure - that's also worth looking into. Docs again: https://developer.atlassian.com/cloud/jira/service-desk/automation-webhooks/
Then for the inbound communication from the app, you'll need to use the Jira REST API and specifically call the transition API to close tickets. Here's some examples: https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/
Hope that helps - Steve.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.