Hi there! Please, help! Having a problem with arrat aggregator and Apify module

I have 2 apify actors connected within my make.com scenarios. First one runs without problems –> gives info to airtable –> second bot reads info from airtable before running –> and must use it as an input for second apify bot. I added array aggregator so th infor could be passed in arrays into apify module. Yet, I keep receivig same error: IMLError

Function ‘if’ finished with error! Function ‘validateInputJSON’ finished with error! Please check that your input is a valid JSON.

And my input JSON filed after running with error as [ null ]. Currently, I have this in my settings for Apify module. I tried to change it in multiple ways, but output is always null. I may be wrong, but, maybe Apify just can’t read the output of array Aggregator for some reason"?

Could be the is causing the error.

Typically you want key and value pairs wrapped in “”

So: “profileURLs”: “the_result_of_the_map_function”

Hey there,

you cant map an array like that unless the module expects an array. What are you trying to extract from there? Usually you can use Aggregate to JSON and compose the JSON string directly.

Good catch, I didn’t notice that!