Hello!
I’m using an HTTP request to retrieve data, followed by an iterator to make the data easier to work with.
The issue I’m facing now is that the output looks like this:
1 Collection
id → ExamplevalueID1
name → Examplevaluename1
value → Examplevalue1
2 Collection
id → ExamplevalueID2
name → Examplevaluename2
value → Examplevalue2
I then use:
{{join(map(21.customer_details.custom_fields; “name”); " | ")}}
which gives me:
Name1 | Name2 | Name3…
However, I need the output to look more like this:
Name1 - Value1
Name2 - Value2
Name3 - Value3…
I’m new to Make.com and unsure how to achieve this. If anyone could help, I’d really appreciate it!
Thanks in advance!