There’s something I’m obviously missing in the way the Iterator and Aggregators work. I never seem to be able to get multiple values to aggregate into one array.
I have a Trello - Get A Card module.
Within its output is an array of CustomField values.
Those values are not exposed to modules further down the line, just the array is.
There are three custom fields. I need to target the value from each.
I’ve been going around in circles following instructions to use an Iterator to get the three values (which then creates three operations, each with one bundle, each with one value). And to then use an Array Aggregator to combine those back into one array, which should look something like:
{
"Array": [
{"customField": "phonenumber"},
{"customField": "email@email.co.nz"},
{"customField": "Name"}
]
}
But nothing I try is having this outcome.
I have a Monday.com “Update Column Values of a Specific Item” module later down the scenario, and I need to map three column values, one to each of the items in this array.
Would someone kindly enlighten me as to what I am missing here?
Thank you very much.