what i am trying to achieve is to get this result of conversion of two dimensional array into an array of collection:
[ { “product_id”: 48973,“weight”: 0.7 },{ “product_id”: 48976,“weight”: 0.8}]
I’ll be appreciated if you can help me. I’m new in make.com so i started to learn about functions so i wanted to ask for help from you.
Thanks in advance for helping me.
@Mr.Make i want to have this result in set variable module:
{ “product_id”: 48973,“weight”: 0.7 },{ “product_id”: 48976,“weight”: 0.8}]
I get two dimensional array in this module
That’s why i used map function to get them dynamically in set multiple variables module. Is that approach which i did using map() is close to do what i explained you?