Overview
You can trigger n8n workflows instantly whenever an Airtable record is created, updated, or deleted. You connect an n8n Webhook node to a Simplified Webhooks webhook URL, and we deliver clean JSON events in real time.1
Create your Simplified Webhooks account
2
Connect Airtable with a Personal Access Token
Create a PAT in Airtable and grant these scopes:
You can find detailed instructions in Airtable’s guide to Personal Access Tokens.
3
Create a Webhook node in n8n
- Add a Webhook node to your workflow.
- Set HTTP Method to
POST. - Copy the Production URL (or Test URL while developing).
4
Create a webhook in Simplified Webhooks
- In your dashboard, create a new webhook.
- Paste the n8n Webhook URL.
- Select the Airtable Base and Table.
- Choose which events to receive:
create,update,delete.
Activate your n8n workflow
Set the Webhook node to Production and activate the workflow. You’ll receive events instantly.
Create, update, or delete a record in Airtable to verify your n8n execution runs immediately.
Example event payload
Requests to your n8n Webhook node contain a JSON body like this:Success
For
create events, fields include current values; for delete events, you’ll primarily get identifiers and minimal metadata.