Additional Resources
- Earn a Make certification by completing the Make certification course
📺 Airtable automations with Make (17:06)
📺 Connect Airtable to Make via webhooks (9:58)
A better way to send data via webhook to Make
let webhookURL = "webhook-url-from-make";
let payload = {
// list of data to be sent via the webhook url to Make
// e.g
// "name": "Bidemi Dairo",
// "program": "Automation Assistants"
}
let postOptions = {
method: "post",
headers: {
'Content-Type':'application/json',
},
body: JSON.stringify(payload)
}
const postResults = (await fetch(webhookURL, postOptions))