While working on a transition I want to use a post function to figure out two different component values that I want to add to the component field at the same time. One part is where I look at specific answers in the form and add that component. After that the post function looks for a region and adds that component to the field as well. This errors out when I tried to put it as an arraylist return. Any thoughts?
Are you trying this through automation or through your own script?
Please review:
https://support.atlassian.com/cloud-automation/docs/advanced-field-editing-using-json/
If you are passing it as below, it will not work.
"components" : [ { "Active Directory"} , { "Network Switch" } ]
You need to pass it as below:
"components" : [ { "name": "Active Directory"} , { "name": "Network Switch" } ]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.