Extract Informations out of Collection

I get the following output, but in the next module, I can only use the result (value) from number 1. However, I need all values for my automation.

How can I implement it so that I can select any value in the next module?

Welcome to the Make community!

To do this, you can use the built-in function toCollection in a Set Variable module —

{{ toCollection(array; key; value) }}

e.g.: (paste this into the Set Variable module)

{{ toCollection(1.array.1.attachments.1.fields; "title"; "value") }}

For more information, the function’s documentation can be found in the Help Centre. You should also complete the tutorials in the Make Academy.

Hope this helps! Let me know if there are any further questions or issues.

@samliew

P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.

Thank You very much, that worked!