The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Need to add Select List (cascading) custom field to automation rule

Naresh G
Contributor
February 9, 2022

Hello all. I am trying to write an automation rule which can create an issue every Monday. Here is one of my fields in the Select List (cascading) type with Yes or NO options. I am unable to add this field to create a screen because it is not supporting for choosing. I need to write JSON to add the custom field in the more options area(Additional fields). I am new to JSON. Can anybody help to write this? Thank you. 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

5 votes
Answer accepted
Vishwas
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
February 9, 2022

Hey @Naresh Gantala 

Welcome to Atlassian Community !!

That's correct cascading fields wont be available in dropdown, we have to pass as JSON in advanced editing.

Sample:Cascade_Value_In_automation.png

 

Regards,

Vishwas

Naresh G
Contributor
May 17, 2022

Thank you @Vishwas 

Natasha Richardson
Contributor
October 26, 2023

This worked for me as well. Before I had this and kept getting errors either "cannot deserialize instance of java.lang.string, etc. ... or JSON not valid error

 

{
"fields": {
"customfield_20476": {
"value": {
"parentOption": "Transferred",
}
}
}
}