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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.