Trigger Webhooks from inside Airtable - Sync with Make.com (scripts included)
ฝัง
- เผยแพร่เมื่อ 20 ม.ค. 2025
- Tutorial how to trigger and send a webhook to Make.com from your Airtable Base.
Will also work with Zapier webhook
You'll need to replace [YOURWEBHOOK] with your webhook URL
The code used in the conditional Script(s):
let record = input.config();
var contentWebhook = await fetch (`[YOURWEBHOOK]?recordID=${record.RecordID}`);
The code used in the description Script:
let tableWebhookBuild = base.getTable("Table 1");
let record = await input.recordAsync('',tableWebhookBuild).catch()
var contentWebhook = await fetch (`[YOURWEBHOOK]?recordID=${record.id}`);
make.com Referral - www.make.com/e...
Airtable Referral airtable.com/i...
#airtable #withMake #webhook #automation #api #zapier #interfaces