Hi All.
I found the following script code for sending a webhook from Airtable to Make but the input.config() in the first line demands an argument.
anyone knows why?
Jesper
let inputConfig = input.config();
let recordID = inputConfig.inputRecord;
console.log(recordID);
let url=‘https://hook.eu1.make.com/7emn6wadgl4bn494kgibfvtop3lf4h6s’
console.log(url);
let request= url.concat(‘?recordID=’,recordID)
console.log(request);
await fetch(request);
