How to scope out a Jira API plugin

Mark Johnson January 21, 2018

Hi everyone, I am looking to scope out a plugin that will be built within Jira. This plugin will connect to a 3rd party REST API and move information from this external client database into Jira.

Does anyone have any useful resources for scoping out this type of project? Being new to this type of analyst work, what I need to understand is how to build the Jira workflow/project that best imports the third party data. Are there any sample documents that may be of a help here?

Thanks very much.

Mark

2 answers

0 votes
Matt Doar
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 22, 2018

Is it a one-off import or a regular import of data?

Sounds like one-way not bidirectional

Get the fields mapped carefully first. Do you want to overwrite Jira data when source data changes, or not. Don't overuse Jira comments or you will get too many of them for the Jira History tab. Does the set of users match in both systems?

0 votes
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 21, 2018

Hello,

It would depend on how you want this data to be moved to Jira. 

If you want to move data in a post function then you would need to develop a custom post-function. You can find more information here:

https://developer.atlassian.com/server/jira/platform/creating-workflow-extensions/

If you want to move data on schedule, then you would need to create your own service

https://bitbucket.org/cfuller/atlassian-scheduler-jira-example/pull-requests/1/add-an-example-of-sal-scheduled-task-to/activity

You can call REST API of your external service using Jersey Client. Jersey Client is embedded in Jira. You can read more here

http://www.j-tricks.com/tutorials/java-rest-client-for-jira-using-jersey

Suggest an answer

Log in or Sign up to answer