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
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.
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:
Regards,
Vishwas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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",
}
}
}
}
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.