Hi! I’m not really familiar with how coding works so I just copied how others created their script. What I want to do is trigger the webhook by clicking the ‘Generate Invoice’ button and it will send the data from Airtable to Integromat webhook. Here’s the script that I am trying to run but Integromat says “No bundles were generated by this operation.” Can somebody help me with my script so this thing will run? Thank you!
let url = “https://hook.integromat.com/{inset integromat webhook here}?recordID=Record ID”;
let table = base.getTable(“Invoice”);
let record = await input.recordAsync(‘Select a record to use’, table);
let fieldsToSend = [‘First Name’,‘Last Name’, ‘Invoice Name’,‘Invoice Amount’];
