Launch Flow for List Items

Runs a chosen flow once for each item in a list, mapping item data to the flow's inputs. Use it to process every item in a list through another flow.

What it does

  • Iterates over the list and launches the selected flow for each item.
  • Maps each flow input to a path in the item, plus any constant values.
  • Returns arrays of successful and failed executions, and whether any failed.

Inputs

NameTypeDescription
List of ItemsListList of items to map over the flow
Inputs MapObjectFor each flow input, specify the path in the item to get the value of that input. This is key/value where key is the flow id and value is json path.
ConstantsObjectConstants object for inputs
FlowStringId of the flow to apply to each item in the list
DG RegionStringDG region Possible values: us, eu.
API KeyStringDG API key
API SecretString (sensitive)DG API Secret

Outputs

NameTypeDescription
SuccessBooleanWhether the flow was executed successfully at least once
Failed ExecustionBooleanWhether at least one execution failed
Successful Executions ArrayListAn array of successful executions
Failed Execustion ArrayListAn array of failed executions

Notes

  • Needs a DG API key, secret and region to launch the flows.