I am using GoAPI via the HTTP request module to fetch Image URLs from Midjourney. Because GoAPI responses containing the Image URLs are behind unique Task IDs, they can’t be mapped any further in the scenario. Make.com will look for the specific Task ID from the previous scenario execution and because the new execution has a new Task ID, it returns a null result (see attached images, before and after). I need to aggregate the Image URLs into an array, not the Task IDs. Can anyone suggest a solution?
Welcome to the Make community!
Looks like you need to get the image using the Task IDs, before you aggregate the results, but I can’t advise further without additional information.
1. Screenshots of Scenario, module fields and filters
Please share screenshots of relevant module fields and filters in question? It would really help other community members to see what you’re looking at.
You can upload images here using the Upload icon in the text editor:
2. Scenario blueprint
Please export the scenario blueprint file to allow others to view the mappings and settings. At the bottom of the scenario editor, you can click on the three dots to find the Export Blueprint menu item.
(Note: Exporting your scenario will not include private information or keys to your connections)
Uploading it here will look like this:
blueprint.json (12.3 KB)
3. And most importantly, Output bundles
Please provide the output bundles of the modules by running the scenario, then click the white speech bubble on the top-right of each module and select “Download output bundles”.
A.
Save the bundle contents in your text editor as a bundle.txt
file, and upload it here into this discussion thread.
Uploading it here will look like this:
bundle.txt (12.3 KB)
B.
If you are unable to upload files on this forum, alternatively you can paste the formatted output bundle in this manner:
-
Either add three backticks
```
before and after the code, like this:```
input/output bundle content goes here
``` -
Or use the format code button in the editor:
Providing the output bundles will allow others to replicate what is going on in the scenario even if they do not use the external service.
Following these steps will allow others to assist you here. Thanks!
I solved this by using Webhooks as a workaround. Since my goal was to have each image run through the scenario in sequence, I directed each upscale endpoint to send to one webhook, which picked them up and ran them through the scenario. For my purposes, it was the same as aggregating and iterating them.
Heya @Dinostyles
Just wanted to step in and give you a round of applause for solving your troubles with the help of @samliew.
Thank you very much for remembering us and sharing the final solution with us. We appreciate it.
Keep up the great job!