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,557,832
Community Members
 
Community Events
184
Community Groups

How to combine two codes in Scriptrunner

Hi dear.

I am new in Scriptrunner. I have two separate codes that I need to combine.

First step: I need to get emails from the multiply user picker custom field:

def issueKey = 'SYSOPS-1321'
def customFieldName = 'customfield_10204'

def result = get("https://myinstance.atlassian.net/rest/api/2/issue/${issueKey}?fields=${customFieldName}")
.header('Authorization', 'Basic mytoken')
.asObject(Map)


result.body.fields[customFieldName].each{ it ->

getUserEmail(it)
}

def getUserEmail(field) {

logger.info("user email:" + field.emailAddress)
}




 Second step: I need to send these emails to the external system and get the team lead's emails

import groovy.json.JsonOutput

final externalUrl = "https://api.hibob.com/"
def userEmail = 'myemail@mydomain.com'

def getResponse = get(externalUrl, "v1/people/" + userEmail + "?fields=work.reportsTo.email&humanReadable=true&includeHumanReadable=false")

 

if (getResponse) {
def responseGetMap = getResponse as Map
// A code to manage the resulted data can be inserted here, i.e iterate results with responseMap.each{}
responseGetMap.each {}

}

def get(def hostUrl, def endpointAndQuery) {

def token = "myToken"
get("$hostUrl$endpointAndQuery")
.header('Accept', 'application/JSON')
.header('Authorization', "$token")
.asObject(Map)
.body
}

Each of these codes works separately.

How to combine them so that the code receives email addresses from the custom field and automatically sends them to the external system and receives the email of team leads in turn?

 

I will be grateful for all your tips.

0 answers

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
PREMIUM
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events