Hi,
I have a form that is passing a smart multi select field from Confiforms to the Labels field in Jira. I'm trying to use the code:
"labels" : [ [entry.FieldName.transform(ColumnName).asArrayOfKVPairs(name)] ]
but it is giving me an error message saying Labels must be a String. If I try to add quotes, I get an error message saying there is an invalid character in the line.
I'm sure it's something simple that I'm missing, but any help is appreciated.
Thanks.
Hi
According to Atlassian Jira documentation the labels field expects an array of strings. Something like this
"labels":["label1","label2"]
What you attempt to post is something like this
"labels":[{"name":"label1"},{"name":"label2"}]
See the asArray function, this is what you need to do
"labels" : [ [entry.FieldName.transform(ColumnName).asArray] ]
Alex
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.