Grab the Code Below!

Connect Your Airtable Base to Any API Using Minimal Code

Copy and paste this code into your Airtable Script action in your automation!

let config = input.config();

async function run() {
  const response = await fetch('[INSERT WEBHOOK URL]', {
    method: 'POST',
    body: JSON.stringify({
      recordId: config.recordId
    }),
    headers: {
      'Content-Type': 'application/json'
    }
  });
}

await run();