You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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.
For legal translation of payment orders, considering your existing Python solution, developing a Jira plug-in would likely provide a more robust and controlled integration with Core Bank. Plus, it could help overcome the debugging challenges you mentioned.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, I'm not totally clear on what you mean. What do you mean by "the response of http is important"?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
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.