May 18, 2022 09:45 AM
Has anybody tried this ?
May 19, 2022 08:14 AM
Not sure how exactly you want to use Ngrok → I am guessing when something happens in Airtable → trigger webhook (which is provided by NGROK)?
If so what you can do is - set a trigger (eg. when record enters view) and use it to start a script:
The script I am using is extremely simple:
const inputData = input.config()
const {recordId} = inputData
const response = await fetch("https://myhookURL.make.com?recordId="+recordId)
console.log(await response.status)
My automation is using webhook from Make.com , so I need to pass there only record ID of the record and I use Airtable module there to pick up other relevant information from Airtable
If you want to pass more infromation to Ngrok webhook, you could chain it in the fetch above with &variable2=valuehere&variable3=valuehere.
I hope that helps?
Jun 22, 2023 04:19 AM
Heya, I dabbled with this tonight and can confirm through early initial testing that ngrok works well with Airtable scripts.