Package Information
Documentation
n8n-nodes-airtable-webhook-trigger
This is an n8n community node to trigger workflows from Airtable webhook events.
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Credentials
Compatibility
Usage
Resources
Installation
Community Nodes (Recommended)
For users on n8n v0.187+, you can install this node directly from the n8n Community Nodes panel in the settings.
- Go to Settings > Community Nodes
- Select Install
- Enter
n8n-nodes-airtable-webhook-trigger
in Enter npm package name - Agree to the disclaimer
- Select Install
Manual Installation
To get started using this node, install it locally in your n8n instance:
# npm
npm install n8n-nodes-airtable-webhook-trigger
# yarn
yarn add n8n-nodes-airtable-webhook-trigger
For Docker-based deployments, add your custom node to your n8n Docker image build:
FROM n8nio/n8n
COPY package.json .
RUN npm install
RUN npm install n8n-nodes-airtable-webhook-trigger
Operations
The Airtable Webhook Trigger node supports the following operations:
- Watch for changes - Triggers a workflow when specific fields change in an Airtable table
- Process changes - Format the output with record ID, field changed, previous and current values
How it works
The Airtable Webhook Trigger node implements the official Airtable webhooks API to:
- Create a webhook in Airtable with the correct webhook specification
- List webhooks to find the latest cursor for your webhook
- List webhook payloads to retrieve changes from Airtable
- Format the output data in a consistent, easy-to-use structure
Each triggered workflow run will provide data in this format:
{
"recordId": "recXXXXXXXXXXXX",
"fieldChanged": "Field Name",
"fieldChangedId": "fldXXXXXXXXXXXX",
"previousValue": "Previous Value",
"currentValue": "New Value",
"includedData": {
"fldYYYYYYYYYYYY": "Value of included field"
}
}
Credentials
This node uses the standard Airtable API credentials which require an API key.
Compatibility
This node has been tested with n8n version 0.187.0 and above.
Usage
- Add the Airtable Webhook Trigger node to your workflow
- Configure your Airtable credentials
- Specify the Base ID and Table ID to watch
- Select which fields to watch for changes
- Select which fields to include in the webhook payload
- Choose whether to include previous values for changed fields
- Activate the workflow
The node will automatically create a webhook with Airtable and start listening for changes. When fields in the specified table change, the workflow will be triggered with the formatted output data.