Airtable Automation Workflows
1,073 ready-made Airtable workflows for n8n, Make, Zapier, Activepieces, and Pipedream. Use Airtable as a lightweight database: sync records, trigger on changes, enrich rows.
Automated Course Inquiry Assistant via SMS with AI and Airtable
This n8n workflow automates course inquiries through SMS using AI to interact with an Airtable database. It leverages Twilio for SMS communication and OpenAI for intelligent query handling.
n8n$9.99Enhance Airtable Records with ChatGPT Insights
Automatically update and enrich Airtable records using ChatGPT to provide contextual insights, ensuring your data remains accurate and informative.
ZapierFreeAutomate TikTok Hashtag Archiving to Airtable with Apify
Effortlessly archive trending TikTok hashtags into Airtable using Apify for comprehensive trend analysis and content planning.
n8n$4.99Create new Airtable records from triggered watch events with a delay
Automatically create new Airtable records from triggered watch events with a delay using Make. Streamline data management with Airtable and Sleep integration.
Make$3.99Organize ClickUp Tasks and Update Airtable Records
This Zap automates the process of managing tasks between ClickUp and Airtable. It filters tasks based on specific criteria, finds the corresponding record in Airtable, and updates it accordingly. This integration ensures that your task management is streamlined and that your Airtable records are always up-to-date with the latest task information from ClickUp, enhancing productivity and organization.
Zapier$3.99Automate RSS Feed Summarization and Storage with Hugging Face and Airtable
Automatically summarize new RSS feed items using Hugging Face's AI and store the summaries in Airtable for streamlined data management and analysis.
Make$3.99Update Airtable records when corresponding ClickUp task's are completed
Instantly receive status changes of ClickUp tasks and update the status of the corresponding records in Airtable. Ensure that there's a 'complete' status for your ClickUp tasks for this automation to work correctly. This template is the second part of the following [template](https://www.integromat.com/en/integration/6609-create-clickup-tasks-from-airtable-records) and uses the same Airtable Base.
Make$3.99Generate texts from prompts with Eden AI from new Airtable records
Easily create engaging content ideas from Airtable records using Eden AIs text generation capabilities. Enhance your writing experience, boost productivity, and improve search rankings.
Make$4.99Automate ActiveCampaign Data Sync to Airtable and Slack
Streamline your marketing operations by automatically syncing ActiveCampaign analytics to Airtable and sending updates via Slack. This workflow ensures timely communication and data-driven decision-making.
Make$3.99Sync Tasks Between Airtable, Asana, and Google Sheets
This Zap automates the process of managing tasks across multiple platforms by creating a seamless workflow between Airtable, Asana, and Google Sheets. It allows users to automatically create new records in Airtable, find specific sections in Asana, look up rows in Google Sheets, and update tasks in Asana, ensuring that all task-related information is synchronized and up-to-date. This integration saves time and reduces the risk of errors, enabling teams to focus on their work instead of manual data entry.
Zapier$3.99Automate Client Session Summaries from Zoom via Gmail and Airtable
Automatically process Zoom meeting emails in Gmail to extract session details, send personalized summaries to clients, and log sessions in Airtable.
n8n$4.99Automate File Sharing and Metadata Logging from Google Drive to Airtable
This workflow automatically retrieves new files from a specified Google Drive folder, shares them via email, and logs their metadata into Airtable for streamlined file management and tracking.
n8n$4.99Sync New Airtable Records to Shopify as Product Drafts
Automatically create a Shopify product draft whenever a new record is added to Airtable. The Shopify product ID is then updated back into Airtable for seamless tracking.
Make$4.99Clean your Mailchimp list with Airtable
This Zap automates the process of managing your email list by removing members from Mailchimp and updating their status in Airtable. When a member is removed from Mailchimp, this Zap will find the corresponding record in Airtable and update it accordingly, ensuring your databases are always in sync and up-to-date. This helps maintain accurate records and improves your email marketing efficiency.
Zapier$2.99Retrieve and Structure Multi-Level Airtable Records in JSON
This n8n workflow efficiently fetches Airtable records and their related child records up to three levels deep, organizing them into a structured JSON format. It optimizes API calls and allows for flexible configuration of data retrieval.
n8n$24.99Build Production-Ready User Authentication with Airtable and JWT
This n8n workflow provides a comprehensive solution for user authentication and management, leveraging Airtable as the backend database. It includes flows for user sign-up and login, as well as the sample CRUD operations retrieving user details, and updating user information. **Youtube Video of me explaining the flow:** https://www.youtube.com/watch?v=gKcGfyq3dPM ### How it Works **User Sign-Up Flow** 1. **Receives POST request**: A webhook listens for POST requests containing new user details (email, first name, last name, password). 2. **Checks for existing email**: The workflow queries Airtable to see if the submitted email already exists. 3. **Handles email in use**: If the email is found, it responds with `{response: email in use}`. 4. **Creates new user**: If the email is unique, the password is **SHA256 hashed (Base64 encoded)**, and the user's information (including the hashed password) is stored in Airtable. A successful response of `{response: success}` is then sent. **User Login Flow** 1. **Receives POST request**: A webhook listens for POST requests with user email and password for login. 2. **Verifies user existence**: It checks Airtable for a user with the provided email. If no user is found, it responds with a failure message (`wrong email`). 3. **Compares passwords**: If a user is found, the submitted password is **hashed (SHA256, Base64 encoded)** and compared with the stored hashed password in Airtable. 4. **Responds with JWT or error**: If passwords match, a **JWT token** containing the user's ID and email is issued. If they don't match, a `wrong password` response is sent. **Flows for a Logged-In User** These flows require a **JWT-authenticated request**. * **Get User Details:** 1. **Webhook (GET)**: Receives a JWT-authenticated request. 2. **Airtable (Read)**: Fetches the current user's record using the `jwtPayload.id`. 3. **Set Node (Specify Current Details)**: Maps fields like First Name, Last Name, Email, and Date from Airtable to a standard output format. * **Update User Details:** 1. **Webhook (POST)**: Receives updated user data (email, name, password). 2. **Airtable (Upsert)**: Updates the record matching `jwtPayload.id` using the submitted fields. 3. **Set Node (Specify New Details)**: Outputs the updated data in a standard format. ### Set Up Steps (Approx. 5 Minutes) **Step 1: Set up your Airtable Base and Table** You'll need an Airtable Base and a table to store your user data. Ensure your table has at least the following columns: * **Email** (Single Line Text) * **First Name** (Single Line Text) * **Last Name** (Single Line Text) * **Password** (Single Line Text - this will store the hashed password) * **Date** (Date - optional, for user sign-up date) **Step 2: Obtain an Airtable Personal Access Token** 1. Go to the Airtable website and log in to your account. 2. Navigate to your personal access token page (usually found under your developer settings or by searching for personal access tokens). 3. Click Create new token. 4. Give your token a name (e.g., n8n User Management). 5. **Grant necessary permissions**: * **Scope**: `data.records:read`, `data.records:write` for the specific base you will be using. * **Base**: Select the Airtable base where your user management table resides. 6. Generate the token and **copy it immediately**. You won't be able to see it again. Store it securely. **Step 3: Create a JWT Auth Credential in n8n** 1. In your n8n instance, go to Credentials (usually found in the left-hand sidebar). 2. Click New Credential and search for JWT Auth. 3. Give the credential a name (e.g., UserAuthJWT). 4. For the Signing Secret, enter a strong, random string of characters. This secret will be used to sign and verify your JWT tokens. **Keep this secret highly confidential.** 5. Save the credential. ### Customization Options This workflow is designed to be highly adaptable: * **Database Integration**: Easily switch from Airtable to other databases like PostgreSQL, MySQL, MongoDB, or even Google Sheets by replacing the Airtable nodes with the appropriate database nodes in n8n. * **Authentication Methods**: Extend the authentication to include multi-factor authentication (MFA), social logins (Google, Facebook), or integrate with existing identity providers (IdP) by adding additional nodes. * **User Profile Fields**: Add or remove user profile fields (e.g., phone number, address, user roles) by adjusting the Airtable table columns and the Set nodes in the workflow. * **Notification System**: Integrate notification systems (e.g., email, SMS) for events like new user sign-ups, password resets, or account changes. * **Admin Panel**: Build an admin panel using n8n to manage users directly, including functionalities for adding, deleting, or updating user records, and resetting passwords. This workflow provides a solid foundation for building robust user management.
n8n$14.99Automate Logo Sheet Analysis and Data Entry with AI and Airtable
Streamline the process of extracting and organizing information from logo sheets using AI and Airtable. This workflow automates the extraction of product names and attributes from uploaded images, checks for similar tools, and updates Airtable records.
n8n$24.99Create Airtable records for new Order Desk orders imported
Every time a new order is imported into your Order Desl, Make will automatically add it to your Airtable as a record. Heres the [table](https://airtable.com/shrfH08GQdWeGGgzY) used in this scenario.
Make$2.99Automate Instagram Reels Posting Using Airtable Content Calendar
This workflow automates the posting of Instagram Reels by using an Airtable content calendar and the Instagram Graph API, ensuring timely and efficient content publishing.
n8n$14.99Build an Intelligent Chatbot with OpenAI and Airtable Integration
Create a sophisticated chatbot that leverages OpenAI's language model and Airtable as a knowledge base, enabling automated, contextual responses.
n8n$9.99Seamlessly Sync YouTube Channel Videos with Airtable for Analytics and Management
Effortlessly manage and analyze your YouTube channel content by syncing video data with Airtable, enabling comprehensive analytics and bulk updates.
n8n$14.99Automate Volunteer Assignment for Emergency Patient Requests via Airtable
Streamline the process of assigning volunteers to new patient requests submitted through Airtable. Automatically notify volunteers and patients via their preferred contact method, ensuring efficient communication and support.
Make$3.99Automatically Create Earned Value Tasks from New Airtable Records
This workflow automatically generates a new task in Earned Value whenever a new record is created in Airtable, streamlining project management and task tracking.
Make$2.99Automate Slack Notifications for New Airtable Records in Specific Views
Automatically send Slack messages when new records are added to a specific view in Airtable, keeping your team informed in real-time.
MakeFree
More integrations
Need a custom Airtable workflow?
Our automation experts build tailored Airtable integrations for your exact stack.
Request a Custom Workflow