Hi everyones,
Is someone can tell me why this is not working?
I use jira automation to create task.
My problem is when I create more than one issuelinks. this solution works for components. so i know that my syntax is ok. please see the bold character for the part that is not working.
Please help
{
"fields": {
"Epic Link": "{{#createdIssues.get(4)}}{{key}}{{/}}"
},
"update":
{"issuelinks":[{
"add": {
"type": {"name": "Blocks"},
"inwardIssue": {"key": "{{#createdIssues.get(8)}}{{key}}{{/}}"}
} },{
"add": {
"type": {"name": "Blocks"},
"inwardIssue": {"key": "{{#createdIssues.get(7)}}{{key}}{{/}}"}
} },{
"add": {
"type": {"name": "Blocks"},
"inwardIssue": {"key": "{{#createdIssues.get(6)}}{{key}}{{/}}"}
} },{
"add": {
"type": {"name": "Blocks"},
"inwardIssue": {"key": "{{#createdIssues.get(5)}}{{key}}{{/}}"}
}
}]
}
}