Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,850
Community Members
 
Community Events
184
Community Groups

How can I get data from an external api, and fill out "new issue" fields with that data.

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

2 answers

Hi @Dan Conroy ...were you able to get this working? I am trying to accomplish a similar functionality. 

 

Thank you

+1, looking for exactly the same

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)

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events