Hi,
I'm trying to update a custom field that allows multiple object values, and I would like to add another object when the summary field is updated.
I'm have not found documentation on how to do this on automation, and when I try the following:
{
"update": {
"custom_XXX": [{
"add": {"key":"YYYY"}
}]
}
}
I get an error that the field is not an array.
I guess it is needed to do some JSON manipulation.
How would be the proper way to achieve it?
Thanks
Hello @Miguel Blasco
Documentation is present here.
I would suggest to make some GET API calls to validate structure of object, allowed values and possible operations. Look for more details here.
Hope this helps to debug your case here.
Cheers
Sherry
Thanks, the field supports the following operations:
"customfield_19430":{"required":false,"schema":{"type":"any","custom":"com.riadalabs.jira.plugins.insight:rlabs-customfield-object-multi","customId":19430},"name":"XXX","fieldId":"customfield_19430","operations":["add","set","remove"]}
and when i try to perform the following action:
{
"update": {
"XXX": [{
"add": "YYY"
}]
}
}
I got the following error:
Error editing issuesCLM-636 (data was not an array (customfield_19430))
What am i doing wrong?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello
Your schema type is "any" not "array", hence you are facing this issue. Might wanna try re-creating custom field of type array and this shall work then.
Sherry
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Thanks for the input. But would it be possible to do something else on the update action?
This is a heavily used field and changing the type might be not possible at this point.
Thanks and best regards,
Miguel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For updating Insight fields, might be good to try this: https://documentation.mindville.com/display/ICV53/Insight+with+JIRA+REST-API
Let me know how it goes!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yes , this documentation helped.
FYI you can still have add operations despite having a type "any". the issue was how i was adding the value:
"add": "YYY" -> "add": [{"key": "YYYk"}]
maybe for the future it would be useful to have those links on the automation documentation? Or at least made more explicit?
(It might be the first 2 were visible, but not the latter).
Thanks and best regards,
Miguel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Glad to hear that. Thanks for the update. This work in is progress to put together these docs but yes I will update our technical writer with your feedback.
Thanks!
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.