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 Prescription Status Update via Webhook and Airtable
Streamline prescription management by automatically updating the status of uploaded files in Airtable.
n8n$12.6Automate Weekly WhatsApp Engagement Updates with Airtable Data
This workflow automatically sends personalized weekly engagement updates and raffle information to users via WhatsApp, using data from Airtable.
n8n$4.99Automate Merchant Creation in Authvia from New Airtable Records
Automatically create new merchants in Authvia whenever a new record is added to Airtable. This workflow streamlines the process of updating merchant information, ensuring data consistency and efficiency.
Make$2.99Daily Hydration Reminder with Slack/Discord & Airtable Reaction Tracking
## Daily Hydration Reminder with Slack/Discord & Airtable Reaction Tracking Automate wellness engagement in your community with a **twice-daily hydration reminder** sent to **Slack or Discord**, and automatically **track member reactions in Airtable**. This no-code workflow nurtures self-care culture while capturing engagement data—zero manual effort required. Perfect for coaches, community managers, and solopreneurs who want to foster mindful habits and recognize active members. --- ## Step-by-Step Setup Instructions Follow these steps to deploy the workflow in **Make.com** (compatible with n8n): ### 1. **Import the Workflow** - In Make.com or n8n, go to **Scenarios > Import from File** - Upload the provided JSON template ### 2. **Set Up Scheduling** - Locate the **Schedule Trigger** node - Confirm times are set to: - `10:00 AM` - `3:00 PM` - Adjust **timezone** in Make/n8n settings to match your audience ### 3. **Configure GIF Library** - Open the **Pick Random GIF** node - Replace placeholder URLs with your own: - Hosted on Giphy, Imgur, or a public CDN - Must end in `.gif` and allow hotlinking - Example: ```text https://media.giphy.com/media/abc123/giphy.gif ``` ### 4. **Connect Messaging Platform** Choose **Slack** or **Discord**: #### For Slack: - Go to **Send to Slack** node - Replace `{{SLACK_WEBHOOK_URL}}` with your incoming webhook - Ensure the channel allows bot messages #### For Discord: - Go to **Send to Discord** node - Replace `{{DISCORD_WEBHOOK_URL}}` with your server webhook - Enable embed permissions > Webhook Guide: > - [Slack Webhooks](https://api.slack.com/messaging/webhooks) > - [Discord Webhooks](https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks) ### 5. **Enable Reaction Polling (Slack)** - In **Get Slack Reactions**, add: - `{{SLACK_BOT_TOKEN}}` with scopes: - `reactions:read` - `channels:history` - `{{SLACK_CHANNEL_ID}}` (e.g., `C012AB3CD`) - The workflow uses the message timestamp to fetch reactions after 24 hours > Discord note: Native reaction polling requires a **Discord bot**. This version supports Slack; Discord support can be extended using the Discord API. ### 6. **Set Up Airtable Logging** - In **Log in Airtable** node: - Enter your **Airtable Base ID** - Ensure table `Hydration Reactions` exists (see structure below) - Map fields correctly (Date, Username, Reaction Count, etc.) - Connect your **Airtable API credential** --- ## Airtable Base Structure This workflow logs every reaction into Airtable for long-term tracking. ### Base: `Community Wellness Tracker` #### Table: `Hydration Reactions` | Field | Type | Description | |------|------|-------------| | `Date` | Date | Date of the reminder (auto-filled) | | `Time Slot` | Single Select | `10:00 AM` or `3:00 PM` | | `User ID` | Text | Slack/Discord user ID | | `Username` | Text | Display name (e.g., `@alex`) | | `Platform` | Single Select | `Slack` or `Discord` | | `Reaction Count` | Number | Always `1` per reaction | | `Message Timestamp` | Text | Message ID for reference | | `Processed` | Checkbox | Marked `false` initially | > Use a **Grouped View** in Airtable to create a monthly leaderboard: > - Group by `Username` > - Rollup: `SUM(Reaction Count)` --- ## Workflow Explanation The automation runs a **daily cycle** with feedback tracking: 1. **Trigger**: Fires at 10 AM and 3 PM via **Schedule node** 2. **GIF Selection**: Randomly picks a calming hydration GIF 3. **Message Delivery**: Sends formatted message to Slack or Discord 4. **Wait**: Pauses for 24 hours to allow reactions 5. **Reaction Check**: Uses Slack API to fetch reactions 6. **Filter**: Only proceeds if at least one reaction is found 7. **Log**: Creates a record in Airtable for each reacting user This creates a **self-sustaining wellness loop**—encouraging care and capturing engagement. --- ## Pre-Conditions & Requirements Before use, ensure: - **Make.com or n8n account** (Free tier supported) - **Slack workspace** with webhook and bot token **or** **Discord server** with webhook - **Airtable account** with base and API key - Publicly accessible **GIF library** - Internet access and JSON parsing enabled > Permissions Required: > - Slack: `reactions:read`, `channels:history` > - Airtable: `create`, `read` access to table --- ## Customization Guidance Extend the workflow to fit your needs: ### Change Timing - Edit the **Schedule node** to send at 9 AM and 1 PM, or only once daily. ### Add Seasonal GIFs - Rotate GIFs by season (e.g., winter themes in December). ### Track Multiple Emojis - Add switches for different emojis to measure different engagement types. ### Auto-Generate Monthly Reports - Use **Airtable Automations** to: - Email top 5 members - Export CSV for reward fulfillment - Post leaderboard in your community ### Reward Integration - Connect **Shopify**, **Gmail**
n8n$4.99Auto-Post Dev.to Articles to LinkedIn with Airtable Tracking & Telegram Alerts
**Problem This Solves:** For developers and creators, consistently posting quality content on LinkedIn can be time-consuming. This workflow automates the process by: - Fetching the latest Dev.to articles - Posting them to LinkedIn twice daily - Preventing duplicates using Airtable - Sending success alerts to Telegram This ensures you're always active on LinkedIn, with zero manual effort. **Who This Template Is For** - Developers who want to build their presence on LinkedIn - Tech creators or solo founders looking to grow an audience - Community/page managers who want regular, curated content - Busy professionals aiming for consistent LinkedIn engagement without doing it manually **Workflow Breakdown** This automation runs twice a day (9:00 AM and 7:00 PM) and performs the following steps: - Fetches Dev.to articles based on a tag - Checks Airtable to avoid reposting the same article - Posts to LinkedIn if it's new - Sends a Telegram message after posting successfully **Step-by-Step Setup Instructions** 1. **Airtable Configuration** Create a new base in Airtable with just one table and one column: Table Name: PostedArticles Column: - ArticleID (Single line text - stores the unique ID of each Dev.to article posted) This column is used to track posted articles and prevent duplicates. 2. **Dev.to API Setup** Use the following endpoint in the HTTP Request node: ``` https://dev.to/api/articles?tag=YOUR_TAG_HERE&per_page=10 ``` Replace YOUR_TAG_HERE with a tag like android, webdev, ai, etc. 3. **Telegram Bot Setup** Open @BotFather in Telegram and create a new bot Save the bot token Get your chat ID using @userinfobot or via Telegram API Add a Telegram node in n8n using this token and chat ID This will notify you when a post is successfully published. 4. **LinkedIn Setup** Create a LinkedIn Developer App Use OAuth2 to connect it in n8n Choose to post on either a user profile or a company page 5. **n8n Workflow Structure** Here's the basic structure of the workflow: - Cron Node - Triggers at 9:00 AM and 7:00 PM daily - HTTP Request - Fetches latest articles from Dev.to - Airtable Search - Checks if ArticleID already exists - IF Node - Filters new vs. already-posted articles - LinkedIn Post - Publishes new article - Airtable Create - Saves the new ArticleID - Telegram Message - Sends success confirmation **Customization Tips** - Change the Dev.to tag in the API URL - Modify LinkedIn post format (add hashtags, emojis, personal notes) - Adjust posting times in the Cron node - Use additional filters (e.g., only post articles with a cover image or certain word count)
n8n$9.99Wait Splitout Process Webhook for Airtable Integration
The 'Wait Splitout Process Webhook' workflow is designed to efficiently manage and process batch data from Airtable using a webhook mechanism. By leveraging the capabilities of n8n, this workflow triggers on a manual action, allowing users to init...
n8n$9.99Assistant for HubSpot Chat Using OpenAI and Airtable
This workflow will allow you to use OpenAI Assistant API together with a chatting platform. This version is configured to work with Hubspot, however, the Hubspot modules can be replaced by other platforms and it will work similarly. ## Prerequisites: - Create a Hubspot Chat (Live chat available on free plan) or Chatflow (paid Hubspot only) and configure it to send all replies toward an n8n webhook (you need to create a custom app for that. I will create a separate article on how to do it, meanwhile, feel free to message me if you need support. ## Setup: - Create an OpenAI Assistant, define its functionality and functions - Update the Hubspot modules with the Hubspot API Key - Update the OpenAI modules with the OpenAI API Key - Create an Airtable or any other database where you keep a reference between the thread id in Hubspot and Assistant API If you need help deploying this solution, don't hesitate to email [me](mailto:tsocaci@makeitfuture.eu/) or schedule a call [here](https://meetings.hubspot.com/makeitfuture/tiberiu-makeitfuture-xcal). 
n8n$24.99Automate Competitor SWOT Analysis with ChatGPT and Airtable
This workflow automates the process of conducting a SWOT (Strengths, Weaknesses, Opportunities, Threats) analysis on competitors by leveraging the power of ChatGPT and Airtable. The integration begins by monitoring updates in an Airtable database,...
Make$19.99Streamline Data Collection from n8n Form to Google Sheets and Airtable
This workflow automates the collection of data from an n8n form, processes it, and sends it to Google Sheets and Airtable.
n8n$6.99Automate Newsletter Subscription with AI Content and Airtable
Create a fully automated newsletter subscription service using n8n forms, Airtable, AI content generation, and Gmail for email delivery. Subscribers receive regular updates based on their chosen topics and intervals.
n8n$24.99Automate Airtable Record Creation with ChatGPT Completions
This workflow monitors new records in Airtable and uses ChatGPT to generate and insert new records, enhancing data management and AI integration.
Make$3.99Automatically Store New MailerLite Subscribers in Airtable
This workflow automatically updates Airtable with new subscribers added to a MailerLite group, ensuring your data is always up-to-date.
n8n$4.99Search and update records in Airtable using Perplexity AI for enhanced data management
A ready-to-use Make workflow that connects Airtable, Perplexity-ai. Search and update records in Airtable using Perplexity AI for enhanced data management. Customize and deploy in minutes.
Make$3.99Search and update records in Airtable while sending messages with Anthropic Claude
A ready-to-use Make workflow that connects Airtable, Anthropic-claude. Search and update records in Airtable while sending messages with Anthropic Claude. Customize and deploy in minutes.
Make$3.99Trigger updates in Airtable and generate images with ChatGPT
Automatically update Airtable records and generate images with ChatGPT. Trigger updates in Airtable, create images, and update records seamlessly.
Make$3.99Batch Airtable Requests to Send Data 9x Faster
####  [Watch Demo YouTube Video](https://youtu.be/sI8PWcI9Jw) ### Optimized Airtable Bulk Data Workflow This workflow is specifically designed to address the challenges of upserting or inserting large volumes of data into Airtable. By leveraging the Airtable Batch API, it delivers up to **9X faster performance** compared to standard data insertion methods, making it an indispensable tool for high-demand data operations. ### Key Features - **Accelerated Data Processing:** Utilize the Airtable Batch API to perform bulk operations swiftly and efficiently. - **Seamless Workflow Integration:** Easily integrate this sub-processor into any n8n workflow that requires Airtable updates, ensuring smooth data synchronization across multiple processes. - **Enhanced Reliability and Scalability:** Designed to handle extensive datasets, this solution is perfect for real-time updates, database migrations, and continuous data syncing without performance degradation. ### Setup Instructions 1. **Add the Sub-Workflow:** Import this workflow to your n8n workflows, then add it as a sub-workflow call in other workflows requiring a lot of Airtable updates. 2. **Configure Sub-Workflow variables: `set_Batching_vars SE Node`** - Obtain the correct Base ID and Table ID, and insert in the set_Batching_vars SE Node.  - Add or select the correct Airtable credentials in both Airtable Upsert & Insert HP nodes in the sub-workflow.  - Ensure the API permissions are set correctly to allow data insertion/upsertion. 3. **Adjust Batch Settings: `set_Batching_vars SE Node`** - In the same set_Batching_vars SE Node, put the field name in the merge_on field if you wish to upsert record, otherwise, keep it empty for insertion.  - Correctly setup the fields you want to insert/upsert in the record field.  4. **Test the Integration:** Run a small-scale test to ensure that data is correctly processed and inserted/upserted into Airtable. --- ### Use Case Scenarios - **Bulk Data Insertion:** Efficiently insert large datasets into Airtable, perfect for initial data migrations or periodic data updates. - **Real-time Data Upsertion:** Keep your Airtable records current by integrating this workflow with your live data pipelines. - **Database Migrations & Synchronization:** Seamlessly transfer data between databases and Airtable, ensuring minimal downtime and data integrity. ### Specific Requirements for Airtable Integration - **Airtable Account:** You must have an active Airtable account with appropriate permissions to modify the target base. - **API Credentials:** Secure a valid Airtable API connection and ensure you have the correct Base ID and Table ID for the target data store. By integrating this workflow into your system, you can significantly **improve the efficiency** of your Airtable operations, **reducing processing time** and enabling **smoother data management at scale**.
n8n$9.99Automate Google Analytics Data Transfer to Airtable
Effortlessly transfer website session analytics by country from Google Analytics to Airtable. Customize dimensions and metrics to suit your needs and automate data fetching using Cron or Interval nodes.
n8n$4.99Extract information from invoices received on Gmail into Airtable with Eden AI
A ready-to-use Make workflow that connects Google-email, Edenai, Airtable. Extract information from invoices received on Gmail into Airtable with Eden AI. Customize and deploy in minutes.
Make$4.99Detect plagiarism instantly with Eden AI and Airtable
A ready-to-use Make workflow that connects Gateway, Edenai, Airtable. Detect plagiarism instantly with Eden AI and Airtable. Customize and deploy in minutes.
Make$4.99Search and update records in Airtable with generated ChatGPT images
A ready-to-use Make workflow that connects Airtable, Openai-gpt-3. Search and update records in Airtable with generated ChatGPT images. Customize and deploy in minutes.
Make$3.99Conduct competitor analysis from Gong calls and store the data on Airtable
A ready-to-use Make workflow that connects Gong, Builtin, Util. Conduct competitor analysis from Gong calls and store the data on Airtable. Customize and deploy in minutes.
Make$4.99Automate GPT-4 Fine-Tuning with Google Sheets or Airtable
Streamline the process of fine-tuning GPT models by automating data extraction from Google Sheets or Airtable, converting it to JSONL, and initiating the fine-tuning process with OpenAI.
n8n$14.99Fetch and Store Company Branding Data in Airtable
Automatically retrieve a company's logo, icon, and other information using Brandfetch and store it in Airtable for easy access and management.
n8n$4.99AI Stock Analysis Agent: Telegram, Airtable & GPT
Automates technical stock analysis via Telegram bot using Airtable for tickers and GPT for AI insights on charts and data.
n8n$24.99
More integrations
Need a custom Airtable workflow?
Our automation experts build tailored Airtable integrations for your exact stack.
Request a Custom Workflow