I'm using Jira automation to try and split out a single line text field to use each value in the list. So far I've been able to successfully split at each "," but can't quite figure out how to print the value at each iteration.
{{#webResponse.body.fields.customfield_10881.split(",")}} {{body}}.com{{^last}},{{/}}{{/}}
In the above line I have tried logging with {{body}} but am not getting any values returned. The automation does correctly iterate and logs the following:
.com, .com, .com, .com, .com, .com, .com
The custom field just contains a single line comma separated list.
Does anyone have experience with this particular issue?