What is your goal?
I am building a scenario which has a JSON → Parse JSON module which is outputting 4 different collections, each with task_name , description, assignee, deadline and follow_up
Here is the complete output bundle:
[ { “task_name”: “Backlink outreach for real estate client”, “description”: “Finalize the backlink outreach list and start sending outreach emails for the real estate client.”, “assignee”: “John”, “deadline”: “2026-02-14”, “follow_up”: “2026-02-12 15:00” }, { “task_name”: “Three SEO blog drafts for SaaS client”, “description”: “Write three SEO-optimized blog post drafts (topics in Notion) for the SaaS client.”, “assignee”: “Maria”, “deadline”: “2026-02-18”, “follow_up”: “2026-02-17 09:00” }, { “task_name”: “On-page SEO updates for e-commerce product pages”, “description”: “Update meta titles and descriptions for the top 20 product pages on the e-commerce website.”, “assignee”: “John”, “deadline”: “2026-02-17”, “follow_up”: “2026-02-13 12:00” }, { “task_name”: “Monthly SEO performance report”, “description”: “Prepare the monthly SEO performance report covering all active clients.”, “assignee”: “Maria”, “deadline”: “2026-02-19”, “follow_up”: “2026-02-18 10:00” } ]
Now, I need to enter this information into Google Sheet.
How do I add each Collection/Bundle separately?
The output is a Collection generate from a Meeting Transcript, each collection has the task name and the employee that will work on it, which means it needs to be assigned to an employee.
What have you tried so far?
I tried using an iterator and it’s Outputting the results separately but I am not able to map them into Google Sheets.


