Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I have in-house system which needed to be updated according to JIRA issue transit through workflows.
I've tried below codes with scriptrunner
post-function but having no luck. (getting stackoverflow error)
If I cannot call the external REST services from JIRA, another way is to poll regularly from our in-house system.
(or JIRA creates JSON file then process it via batch process?)
Any help will be appreciated.
import groovy.json.JsonSlurper; import groovy.json.StreamingJsonBuilder; import com.atlassian.jira.ComponentManager; import com.atlassian.jira.issue.CustomFieldManager; import com.atlassian.jira.issue.fields.CustomField; import com.atlassian.jira.issue.IssueManager; import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.issue.Issue; import org.apache.commons.codec.binary.Base64; CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager(); def issue = issue as Issue def issueStatus = issue.status; // find custom fields def cf2 = customFieldManager.getCustomFieldObjects(issue).find {it.name == 'Original Call Log ID'}; def issueCalllog = issue.getCustomFieldValue(cf2); def body_req = [ "record.char_20": issueStatus, "record.char_21": issueCalllog ] def baseURL = "http://rd0013:daniel12@192.168.170.179/IBSDevREST/rest/resources/MAIN/GE/LOG/record/17020013"; URL url; url = new URL(baseURL); URLConnection connection = url.openConnection(); /*connection.requestMethod = "POST" */ connection.doOutput = true connection.setRequestProperty("Content-Type", "application/json;charset=UTF-8") connection.outputStream.withWriter("UTF-8") { new StreamingJsonBuilder(it, body_req) } connection.connect();
Hi I would not recommend to go down this part. Look at setting up a JIRA webhook instead that send POST to your in-house system and do GET on what you need from JIRA when this occur.
Good luck!
thanks for advice.
trialled PoC on this approach and seems to be working.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your welcome! Happy to share insights
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Niclas,
My task is like create Index on Elasticsearch whenever Ticket is created in Jira.
To create Index in Elasticsearch we need to pass some JSON which contains static JSON. but not related to JIRA ticket.
Is Weebhook pass JSON for me?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can't get JIRA to send a custom JSON so this is not possible. You can track https://jira.atlassian.com/browse/JRASERVER-63205
You could see if any plugin enables this or just let middleware receive the push from JIRA and let that do what you need in Elasticsearch.
Good luck!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
vaishal please check Thanos answer below...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Daniel,
I suppose you can try to use the groovyx.net.http.RESTClient. Have a look at Jamie's asnswer
https://answers.atlassian.com/questions/33129265
The above example makes a call to an external JIRA instance, but you can modify it. Hope that helps.
regards, Thanos
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.