Automation Helpers

Webhook Script

Grab the free Airtable script here to connect your base to Make via webhook. Just copy, paste, and start automating — no extra setup needed.


Use this script to send data from an Airtable automation to a Make (formerly Integromat) webhook. Copy the script and paste it into your Run Script step in Airtable.

let inputConfig = input.config();

let webhookUrl = "YOUR_WEBHOOK_URL_HERE"; // <-- replace with your Make webhook URL

let payload = {
  recordId: inputConfig.recordId,
  // Add any additional fields you want to send
};

await fetch(webhookUrl, {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify(payload),
});

Replace YOUR_WEBHOOK_URL_HERE with the webhook URL from your Make scenario.