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.
I am using JIRA SERVER
I want to set a custom field that is a cascading select in automation for jira. I do NOT wish to copy it from another ticket / field. I just want to set the field using automation for jira in the Advanced Fields section. I am trying this but it won't work. Please help!
{
"fields": {
"customfield_23592": { "value": "{{customfield_23592.Product Security}}"
}
}
}
Hi Julia,
If you want to refer to the cascading select field, you need to specify it this way:
"customfield_23592" : { "value": "parent_option1", "child": { "value" : "p1_child1"} }
You can get more information here, https://support.atlassian.com/jira-software-cloud/docs/advanced-field-editing-json/
Thank you so much! Since I didn't need to edit the child, this ended up working for me
{
"fields": {
"customfield_23592" : { "value": "Product Security" }
}
}
}
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome. I'm glad that it solves your problem :)
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.