Hello,
I am trying to get multiple users (Change Advisory Board) into custom field with manual automation. Automation has to select members of Chnage Advisory Board based on Insight Object Custom Field XY and its attribute CAB.
I did try Edit Issue with:
{
"update": {
"Change Advisory Board (CAB)": [{
"set": {
"accountId": "{{issue.customfield_12318.CAB}}"
}
}]
}
}
....where customfield ID is ID of XY Insight Object Custom Field and still I am getting an error: (data was not an array (customfield_13566))
Please help
Thank you, in the end I resolved it with:
{
"fields": {
"NameOfCustomFieldToBeUpdated": {{NameOfInsightCFWhichAttributeWe Fetch.NameOfAttribute.flatten.asJsonObjectArray("id")}}
}
}
I think if you want to avoid that error, you might need to use the customfield like below:
"customfield_XXXX" : [{"key" : "EXAMPLE-1"}]
Also this article can help:
https://confluence.atlassian.com/jirakb/copying-values-between-asset-object-field-and-multi-select-custom-field-using-automation-1141504943.html
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.