Hi, I’m stuck and hope someone can help
I’ve got a single API call, an iterator and updating Airtable with the results (multiple records from the call) … all works
I need to make a second API call after the first, for each record returned make another call to get additional data for each record.
I can’t figure out where I may that second call and if I need an additional iterator
Any help appreciated, thanks
Mike
You can simply utilize the HTTP Module following the Iterator to retrieve the additional details needed for Airtable.
Could you share the current configuration of your scenario?
Hi Runcorn
Thanks for taking the time to reply.
Currently:
I want to make the second call for each item in the Iterator.
Moved it on a little bit by putting the second HTTPS and using the ID from the iterator as a Query String parameter and getting “No filter selected. Expected one of: chart, myRating, id”.
Thanks,
Mike
Yes, that looks correct.
You can now map the results from the HTTP module to your Airtable records. Are you encountering any difficulties with this process?
Apologies, I misunderstood. Could you please share the API documentation for the API you're integrating with? Based on the error message, the API for GET requests appears to require __chart
, myRating
, and id
.
Could you please verify if the ID is included in the response iterator?
Hi,
Yes, I am experiencing the expected behavior without the second HTTP call; it's correctly saving to the database.
Mike