...from a commit message and via the creation of an 'issue' in git
Shall I write my own plugin? Only if it allows me to expose a custom Jira REST API endpoint that I can hit from a github webhook.
Is there some other Jira construct that allows me to create a custom REST API endpoint in Jira?
Hello,
REST API is available in Jira.
You can find available Jira REST API here:
https://docs.atlassian.com/jira/REST/server/
If you want to create issue you should use POST /rest/api/2/issue. If you want to update issue you should use PUT /rest/api/2/issue/{issueIdOrKey}
You can install Atlassian REST API browser plugin for making your life easier while palying with Jira REST API.
https://marketplace.atlassian.com/plugins/com.atlassian.labs.rest-api-browser/server/overview
I know very well about the API thank you. But since I am not in control of the github webhook post, then I need to fabricate a REST API endpoint of my own design, that will consume the requests from the external system. And then yes, handle them by processing them into jira issue updates.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use Adaptivist Scriptrunner to develop a custom REST Endpoint. It will be less time consuming then developing a plugin.
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.
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.