I am testing out an automation that clones issues from one project to another, where the target project is depending on the Team that needs to take care of the Issue.
At the moment we use a custom field for this, but since Atlassian provided a "Team" field, i want to change our automation to use this.
Since the "Team" field cant be set i need to provide the data with "Additional fields" JSON looking as follows:
{
"fields": {
"Team": {"id": {{triggerIssue.team.id.asJsonString}} }
}
}
I get the following error, when running the automation:
Oh well, i think i just found the soloution myself...
Since i'm unable to delete the post on here, i just had a wrong json:
{
"fields": {
"Team": {{triggerIssue.team.id.asJsonString}}
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.