Hi, I want to create multiple tickets in jira using confluence form, based on the mult-select dropdown, So I am using the below code inside IFTTT Integration rules. The values are seperated by "-" and the split function is working good. When we click on save only one ticket is created jira.
Can someone help me to solve this issue.
Thanks
#set($myapp = "[entry.Application]")
#set($var = $myapp.split("-"))
#foreach($string in $var)
{
"fields": { "project": { "key": "SOLID" },
"issuetype": { "id": "3" },
"summary": "$string",
}
}
#end
Thanks @Alex Medved _ConfiForms_ for the quick reply. We are not able to proceed with bulk creation due to other features. But were able to achieve the result with other options.
Thanks,
Mani