This action allows you to perform aggregation operations on a list of numbers (or objects containing numbers). It supports common operations like Sum
, Average
, Count
, Min
, and Max
. It’s perfect for quickly calculating totals, stats, or summaries within your flow.
Inputs:
Numbers – array with numbers or objects with numbers
Aggregation Method – operation to perform over the numbers – Sum
, Average
, Count
, Min
, and Max
Aggregation Field – property name of the numbers if they’re in an object
Outputs:
Result – a single number based on the operation

Examples
This screenshot is the most simple example of this operation. Supply an array of numbers and the aggregation method that you want and the result will be returned.

In practical use the input for this action is likely to be the dynamic output of another action. Which will probably an array of JSON objects, like this:
[
{
"Name": "Paul",
"Age": 47
},
{
"Name": "Tom",
"Age": 35
},
{
"Name": "Marcel",
"Age": 32
}
]
If you wanted to get the average age of the people inside of the array you would specify Age as the aggregation field and aggregation method as Average:
