Hi,
I'm trying to copy the value of a field we setup in an epic to story's and subtasks from that epic. The problem is our custom field dosen't show up when we search for him so i tried to do it with the "More Options" like that:
{
"fields": {
"customfield_10951": {{issue.customfield_10951.value}}
}
}
The problem is, is not copying the value... can somebody help me here?
Thanks
@Hana Kučerová i have created this custom field with another plugin called CRM for JIra.
Here it is:
In automatin i cannot find him, si i need the json format to copy his value to other fields, everything i try, it says "Error while parsing additional fields. Not valid JSON."
Can you help?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have you tried putting quotation marks around the smart value? The field type and value may be leading to the invalid JSON error you note.
{
"fields": {
"customfield_10951": "{{issue.customfield_10951.value}}"
}
}
Best regards,
Bill
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.