Package Information
Released: 5/17/2025
Downloads: 0 weekly / 0 monthly
Latest Version: 0.1.1
Author: vwork-digital
Available Nodes
Documentation
n8n-nodes-airtable-webhook-trigger
This is an n8n community node for triggering workflows based on Airtable webhooks. It allows you to watch for changes in Airtable tables and trigger workflows when records are created or updated.
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Credentials
Compatibility
Usage
Resources
Version history
Installation
Follow the installation guide in the n8n community nodes documentation.
Operations
- Watch for record creation
- Watch for record updates
- Specify fields to watch for changes
- Include additional field data in the output
Credentials
You need an Airtable Personal Access Token to use this node.
- Go to your Airtable account page
- In the API section, create a Personal Access Token with permissions to access your bases
- Use the token in the n8n credentials for this node
Compatibility
Tested with n8n version 1.92.2
Usage
- Create a new workflow
- Add an "Airtable Webhook Trigger" node as the trigger
- Configure the credentials
- Select the base and table you want to monitor
- Select fields to watch for changes
- Select any additional fields to include in the output
- Choose if you want to include previous values in the output
- Select which events to trigger on (record creation and/or updates)
- Save the workflow and activate it
The node will then trigger your workflow when the specified changes occur in your Airtable table.
Output Format
When triggered, the node outputs data in this format:
{
"recordId": "recXXXXXXXXXXXXXX",
"fieldChanged": "Field Name",
"fieldChangedId": "fldXXXXXXXXXXXXXX",
"previousValue": "Previous value (if available)",
"currentValue": "Current value",
"includedData": {
"Field 1": "Value 1",
"Field 2": "Value 2"
}
}
Resources
Version history
0.1.0
- Initial release