Hi everyone, hoping you can help me.
I'm trying to set up an automation where when an issue is created, if it has a parent link it will inherit the value in the parent link Team field. I've currently got the following set up but it keeps creating an error when the automation rule is run and I can't figure out if it's because this functionality is not supported or because I've written it incorrectly, has anyone tried this successfully?
{ "fields":
{ "customfield_XXXX": {{issue.parent.customfield_XXXX.asJsonString}}
}
}
Ended up finding the answer, in case anyone else gets stuck like I did I was using the wrong JSON:
Correct form is:
{
"fields": {
"customfield_XXXX": {{issue.parent.customfield_XXXX.id.asJsonString}}
}
}
Hello @Korey Kavadias , I am trying to do the same and your answer is probably the closest I can get to. However, I am getting a weird error complaining the team with ID xxx is not found but I can see them under the team menu.
Have you had any experience with that before? Any help would be appreciated. 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.