Webhook Script
Copy the script below by clicking the blue box. Once it says “Copied", paste it into your Run script step in Airtable.
const inputData = input.config();
const recordId = inputData.recordId;
const leadName = inputData.leadName;
const email = inputData.email;const kickOffDate = inputData.kickOffDate;
const accountManager = inputData.accountManager;
const webhookUrl = "insert your webhook url here";
const url = `${webhookUrl}?ecord_id=${recordId}&lead_name=${leadName}&email=${email}&kick_off_date=${kickOffDate}&account_manager=${accountManager}`;
const response = await fetch(url);
console.log("Response status:", response.status);
Need help building a solution tailored for you?
If you want a system that matches your specific needs, reach out for a free consultation.