After searching record id and running apis and loop nodes, I can’t locate record id because a loop node is used. Not sure how to explain further but I took a screenshot and looking to update Airtable but cant match id.
I am self hosting with railway on the latest version I think.
Hey @Esmail
I am assuming your Airtable node returns multiple records and that’s why you want to loop over them.
You should refer to the Loop node in your update and not directly to ‘Airtable’ search node like this: {{ $json.id }}
or directly by the loop node name || {{ $('Loop Over Items1').item.json.id }}
You can also reference the Airtable node directly but if you have multiple items in it’s result .item is not gonna work for you. You can use either .first() or .last() instead to get the first or the last item from the search result.
Hey, thanks for replying. It’s a single record pulled through a webhook, then gets other fields, updates airtable, then uses api to get multiple URLs, scrape, and concatenate them with multiple loops (didnt work with even single loop) and updates the output back in airtable, but it doesn’t recognize the record id to update the output.