• Instructions to Ask a Question

    For any assistance, please click the "Ask a Question" button and select the Pabbly product for which you require support.

    We offer seven comprehensive applications designed to help you efficiently manage and grow your business:

    Our support team endeavors to respond within 24 business hours (Monday to Friday, 10:00 AM to 6:00 PM IST). We appreciate your understanding and patience.

    🚀 Exclusive Lifetime Offers 🚀

    We invite you to take advantage of our special one-time payment plans, providing lifetime access to select applications:

    • 🔥 Pabbly Connect — Lifetime Access for $249View Offer
    • 🔥 Pabbly Subscription Billing — Lifetime Access for $249View Offer
    • 🔥 Pabbly Chatflow — Lifetime Access for $249View Offer

    Make a one-time investment and enjoy the advantages of robust business management tools for years to come.

  • Due to Diwali and Bhai Dooj celebrations, our team will have limited availability. While we’ll continue to monitor threads, responses may be slightly delayed. Normal operations will resume on Friday, 24th October 2025.

Nested Iterators

sb96

Member
Hi all!

I am trying to process a json response which takes a format similar to the example format below. What I want to do is I want to create an airtable element for each option of each element in the outer list.

The way I thought of implementing this is to have two nested Pabbly iterators, one going over the elements of the outer list, and then a following one to go over each element's options.

However, when I run the integrations, it seems to only process the first option of the first element (i.e. name="first element", optionId=1, value="yes").
What could I be doing wrong? Am I actually able to use nested iterators? I know in other tools like Zapier this isn't possible, but Pabbly let me create the iterators, so I was hoping that was possible?

Attaching also a screenshot of the shape of my workflow at the bottom.

Code:
[
{
    "name": "first element",
    "options": [
        {
            "optionId": 1,
            "value": "yes"
        }
    ]
},
{
    "name": "second element",
    "options": [
        {
            "optionId": 1,
            "value": "no"
        },
        {
            "optionId": 2,
            "value": "yes"
        }
    ]
},
{
    "name": "third element",
    "options": [
        {
            "optionId": 1,
            "value": "yes"
        },
        {
            "optionId": 2,
            "value": "yes"
        }
    ]
}, ...

]







Screenshot 2024-10-30 at 17.58.34.png
 
Top