Adding Records to Airtable from Bundles

Hello @NigelB,
Use Case 1:
The first thing is if there are possibility then combine your all previous element output(Before parseJSON) into a single json array and then parse it. Which returns a single bundle with an array within it.
Then you can directly use the get() and map() functions to get your exact data from the array.

Use Case 2:
If use case 1 is not possible then use an Array Aggregator after your parseJSON Module.
Which returns all bundles in a single array.
Then you can directly use the get() and map() functions to get your exact data from the array.

Also, check specific courses about how to use get and map functions with the array. Using get() and map() functions

Also, see my last 2 answers which look like the same type of concept.


:bulb:P.S.: Always search first, Check Make Academy. If this is helpful, mark it as a solution :white_check_mark: and :+1:
Need expert help or have questions? Contact or comment below! :point_down:

1 Like