Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Bank Automation

Siavosh Kasravi
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.
March 13, 2019

I like to write a program to send payment orders from Jira directly to Core Bank. I considered writing it as a post transition groovy script or as plug-in. Which solution is the best fit you think?

I should note that I already made the software in python. 

[edit]

I should also note that debugging scripts in Jira is a bit hard. No debugger, can't run it by demand, no output, etc.

1 answer

0 votes
Ben Poulson
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.
March 15, 2019
I should also note that debugging scripts in Jira is a bit hard. No debugger, can't run it by demand, no output, etc.

For this reason, I would be inclined to recommend against doing it in jira itself... any script more complex than an if/else statement can be a nightmare to work with. If you already have it working in Python, would it be possible to have it set up on a different server and have jira trigger it via webhook or something? I wrote a python script a couple months ago to do some data analysis stuff that I couldn't find a way to do in jira (nothing too complicated, just sends a weekly email with stats about a certain type of ticket), so I know it's possible to get the info about a jira ticket remotely via the export feature.

Siavosh Kasravi
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.
March 16, 2019

That is an option but the response of http is important and I am not sure a webhook is able to handle that or not.

Ben Poulson
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.
March 18, 2019

Sorry, I'm not totally clear on what you mean. What do you mean by "the response of http is important"?

Siavosh Kasravi
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.
March 18, 2019

What I meant was that Jira should act based on the response received from another server. I wasn't sure if Jira webhook can handle that.

Suggest an answer

Log in or Sign up to answer