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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I'm trying to do the following:
Create a new ticket in JIRA, and pull data from an external API, using that data to fill out the new JIRA issue fields.
This is because we use a separate helpdesk system, and our users need to pull those external helpdesk tickets and place them in JIRA to use them in their sprint.
The way I think I'd like it to work is to have a "helpdesk ticket ID" field in the new issue screen, and a button to "pull data now". That button would initiate a REST API call, passing in the helpdesk ticket ID as a parameter, and then place the details from the ticket into various fields, such as the description field.
I've been playing with scriptrunner to do this, and can't seem to figure it out. I have managed to make a test REST API call from the script console using this code I found:
private static get(String url) { |
def connection = url.toURL().openConnection() |
connection.addRequestProperty("Authorization", "Basic ${authString}") |
connection.setRequestMethod("GET") |
connection.doOutput = false |
connection.connect() |
connection.content.text |
}
I can't figure out the following:
1. How to initiate this script based on a user clicking a button
2. How to do something with the data when it comes back.
Thanks for any help anyone can provide.
Dan
Hi @Dan Conroy ...were you able to get this working? I am trying to accomplish a similar functionality.
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Update: as I'm working through this, I've managed to get a scriptrunner groovy script to trigger based on clicking the Update button for an issue. I can get that to pull a value from a REST api call, and then display that output in a notification using the script below.
(The rest api call is just an easy example to prove I get data back)
Now I'm trying to figure out how I can SET the value of the "Description" field, with the output of my REST call.
Can anyone point me in the right direction for how to set the description field?
import com.onresolve.scriptrunner.runner.util.UserMessageUtil
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.jira.ComponentManager
import com.atlassian.jira.issue.customfields.option.LazyLoadedOption
private static get(String url) {
def connection = url.toURL().openConnection()
connection.setRequestMethod("GET")
connection.doOutput = false
connection.connect()
connection.content.text
}
def output = get('https://api.macvendors.com/8c8590')
UserMessageUtil.success("Output:" + output)
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.