HTTP only posting 2 outputs, when there should be 11

Hi there Makers!

I have run this scenario a few different ways, but can’t seem to get the final piece of the puzzle to work.

I’m trying to setup an automation to POST chapter_marks into a podcast host (podigee), just after creating the episode via a gsheets webhook.

Episode creation works perfectly, however when I iterate through the chapter_marks, and seem to have them set up perfectly, the HTTP POST module only iterates through two of them (and posts them correctly to podigee!), but there are (usually) at least a half-dozen.

Any help would be appreciated!



Welcome to the Make community!

Please take a screenshot of your full scenario’s previous execution run showing the white output “speech” bubbles on the top-right of each module. You can get this from the scenario run history.

You have not yet provided sufficient information to demonstrate the problem that would allow us to reproduce the scenario and any error(s).

To allow others to assist you with your scenario, please provide the following:

1. Relevant Screenshots

Could you please share screenshots of your full scenario? Also include screenshots of any error messages, module settings (fields), relevant filter settings (conditions), and module output bundles. We need to see what you’re working with to give you the best advice.

You can upload images here using the Upload icon in the text editor:

We would appreciate it if you could upload screenshots here instead of linking to them outside of the forum. This allows us to zoom in on the image when clicked, and prevent tracking cookies from third-party websites.

2. Scenario Blueprint

Please export the scenario blueprint. Providing your scenario blueprint file will allow others to quickly recreate and see how you have set up the mappings in each module, and also allows us take screenshots or provide module exports of any solutions we have for you in return - this would greatly benefit you in implementing our suggestions as you can simply paste module exports back into your scenario editor!

To export your scenario blueprint, click the three dots at the bottom of the editor then choose ‘Export Blueprint’.

You can upload the file here by clicking on this button:

3. Output Bundles of Modules

Please provide the output bundles of each of the relevant modules by running the scenario (you can also get this without re-running your scenario from the History tab).

Click on the white speech bubbles on the top-right of each module and select “Download input/output bundles”.

A. Upload as a Text File

Save each bundle contents in a plain text editor (without formatting) as a bundle.txt file.

You can upload the file here by clicking on this button:

B. Insert as Formatted Code Block

If you are unable to upload files on this forum, alternatively you can paste the formatted bundles.
These are the two ways to format text so that it won’t be modified by the forum:

  • Method 1: Type code block manually

    Add three backticks ``` before and after the content/bundle, like this:

    ```
    content goes here
    ```

  • Method 2. Highlight and click the format button in the editor

Providing the input/output bundles will allow others to replicate what is going on in the scenario, especially if there are complex data structures (nested arrays and collections) or if external services are involved, and help you with mapping the raw property names from collections.

Sharing these details will make it easier for others to assist you.

Thanks Samliew!





Scenario Blueprint (99.0 KB)

Iterator Output Bundle

[
    {
        "title": "Intro",
        "start_time": "00:00:00",
        "__IMTINDEX__": 1,
        "__IMTLENGTH__": 11
    },
    {
        "title": "Vojtech's personal motivation",
        "start_time": "00:02:18",
        "__IMTINDEX__": 2,
        "__IMTLENGTH__": 11
    },
    {
        "title": "Stories are key",
        "start_time": "00:03:23",
        "__IMTINDEX__": 3,
        "__IMTLENGTH__": 11
    },
    {
        "title": "The right format",
        "start_time": "00:06:22",
        "__IMTINDEX__": 4,
        "__IMTLENGTH__": 11
    },
    {
        "title": "Arguments depend on the audience",
        "start_time": "00:08:32",
        "__IMTINDEX__": 5,
        "__IMTLENGTH__": 11
    },
    {
        "title": "Trash and Cash",
        "start_time": "00:11:09",
        "__IMTINDEX__": 6,
        "__IMTLENGTH__": 11
    },
    {
        "title": "Dealing with Social Media critics",
        "start_time": "00:14:36",
        "__IMTINDEX__": 7,
        "__IMTLENGTH__": 11
    },
    {
        "title": "Winning colleagues",
        "start_time": "00:16:58",
        "__IMTINDEX__": 8,
        "__IMTLENGTH__": 11
    },
    {
        "title": "Communication skills are essential",
        "start_time": "00:21:07",
        "__IMTINDEX__": 9,
        "__IMTLENGTH__": 11
    },
    {
        "title": "Looking back at CIRCULAZE Summit",
        "start_time": "00:23:13",
        "__IMTINDEX__": 10,
        "__IMTLENGTH__": 11
    },
    {
        "title": "The Launch of the Circular Economist",
        "start_time": "00:25:00",
        "__IMTINDEX__": 11,
        "__IMTLENGTH__": 11
    }
]

POST request to Podigee Bundle 1

[
    {
        "ca": null,
        "qs": [],
        "url": "https://app.podigee.com/api/v1/chapter_marks",
        "data": "{\n  \"episode_id\": 1880145,\n  \"title\": \"Intro\",\n  \"start_time\": \"00:00:00\",\n  \"url\": \"\",\n  \"created_at\": \"2025-04-17T17:37:36Z\",\n  \"updated_at\": \"2025-04-17T17:37:36Z\",\n  \"image\": \"\"\n}",
        "gzip": true,
        "method": "post",
        "headers": [
            {
                "name": "Token",
                "value": "5aa225b48604a9bc8a052eed31df93c9"
            },
            {
                "name": "Content-Type",
                "value": "application/json"
            }
        ],
        "timeout": 300,
        "useMtls": false,
        "authPass": null,
        "authUser": null,
        "bodyType": "raw",
        "contentType": "application/json",
        "serializeUrl": false,
        "shareCookies": false,
        "parseResponse": true,
        "followRedirect": false,
        "useQuerystring": true,
        "rejectUnauthorized": false
    }
]

POST Request to Podigee Bundle 2

[
    {
        "ca": null,
        "qs": [],
        "url": "https://app.podigee.com/api/v1/chapter_marks",
        "data": "{\n  \"episode_id\": 1880145,\n  \"title\": \"Vojtech's personal motivation\",\n  \"start_time\": \"00:02:18\",\n  \"url\": \"\",\n  \"created_at\": \"2025-04-17T17:37:36Z\",\n  \"updated_at\": \"2025-04-17T17:37:36Z\",\n  \"image\": \"\"\n}",
        "gzip": true,
        "method": "post",
        "headers": [
            {
                "name": "Token",
                "value": "5aa225b48604a9bc8a052eed31df93c9"
            },
            {
                "name": "Content-Type",
                "value": "application/json"
            }
        ],
        "timeout": 300,
        "useMtls": false,
        "authPass": null,
        "authUser": null,
        "bodyType": "raw",
        "contentType": "application/json",
        "serializeUrl": false,
        "shareCookies": false,
        "parseResponse": true,
        "followRedirect": false,
        "useQuerystring": true,
        "rejectUnauthorized": false
    }
]

There were no further bundles POSTed to podigee in this module, which is what’s confusing.

I hope this helps figure it out!

Thanks again!

Craig