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.
Hi,
I have a script that copy some fields from one Issue to another, but it is failing when the fields have an EMPTY value, this is my current code:
// get custom fields
def customFields = get("/rest/api/2/field")
.asObject(List)
.body
.findAll { (it as Map).custom } as List<Map>
def partnerId = customFields.find { it.name == 'Partner' }?.id
def reportingProjectId = customFields.find { it.name == 'Reporting Project' }?.id
def fields = issue.fields as Map
//Get the field values
def partnerValue = fields.customfield_13992.value //Multi Select type
def reportingProjectValue = fields.customfield_13690 //Free text single line type
def updateLinkedIssue = put("/rest/api/2/issue/${issue.key}")
.header('Content-Type', 'application/json')
.body([
fields: [
(partnerId): [value: partnerValue] as Map,
(reportingProjectId) : reportingProjectValue
]
])
.asString()
When the "partnerValue" variable has a value, the script works well, but if the field is empty the script fails, any idea how to build the FIELDS section of the JSON on the code to only include those fields that are not EMPTY?
Thanks in advance.