Access iterator value in child action

When the iterator runs it cuts each array item out and pass it to the child.

Here are some examples on how it looks like.

Example 1

Input

{ "anArray":["val1_","val_2"] }

iterator expression $.anArray

Child input

To access val_1 add JSON path expression

value

$

In the body of the child, you can now access val_1 or val_2 by {{value}}