{{$action.actionName[0].outputField}}
{{$action.actionName[-1].outputField}}
actionName
is the name of the action, and outputField
is the specific field in the output you want to access. The index 0
refers to the first iteration, 1
for the second, and so on. The index -1
always refers to the last iteration.
Learn more about this syntax and indexing variables in our Variables Documentation.