Skip to main content

Automate a Tally form: store with Airtable, notify via Slack

Workflow preview

Workflow preview
100%
Automate a Tally form: store with Airtable, notify via Slack preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

Workflow Goal Still manually checking form responses in your inbox? What if every submission landed neatly in Airtable — and you got a clean Slack message instantly? That’s exactly what this wor...

Best for

  • Lead Generation automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.scheduletrigger, n8n-nodes-base.airtable, n8n-nodes-base.slack, n8n-nodes-base.stickynote

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Baptiste Fort.

Original n8n.io source

1.1 Workflow description

Title
Automate a Tally form: store with Airtable, notify via Slack
Workflow name
Automate a Tally form: store with Airtable, notify via Slack

🎯 Workflow Goal

Still manually checking form responses in your inbox?

What if every submission landed neatly in Airtable — and you got a clean Slack message instantly?

That’s exactly what this workflow does.

No code, no delay — just a smooth automation to keep your team in the loop:

Tally → Airtable → Slack

Build an automated flow that:

  • receives Tally form submissions,
  • cleans up the data into usable fields,
  • stores the results in Airtable,
  • and automatically notifies a Slack channel.

Step 1 – Connect Tally to n8n

What we’re setting up

A Webhook node in POST mode.

Technical

  1. Add a Webhook node.
  2. Set it to POST.
  3. Copy the generated URL.
  4. In Tally → Integrations → Webhooks → paste this URL.
  5. Submit a test response on your form to capture a sample structure.

Step 2 – Clean the data

After connecting Tally, you now receive raw data inside a fields[] array.

Let’s convert that into something clean and structured.

Goal

Extract key info like Full Name, Email, Phone, etc. into simple keys.

What we’re doing

Add a Set node to remap and clean the fields.

Technical

  1. Add a Set node right after the Webhook.
  2. Add new values (String type) manually:
    • Name: Full Name → Value: {{$json["fields"][0]["value"]}}
    • Name: Email → Value: {{$json["fields"][1]["value"]}}
    • Name: Phone → Value: {{$json["fields"][2]["value"]}}
      (Adapt the indexes based on your form structure.)

Use the data preview in the Webhook node to check the correct order.

Output

You now get clean data like:

{ "Full Name": "Jane Doe", "Email": "[email protected]", "Phone": "+123456789" }

Step 3 – Send to Airtable

✅ Once the data is cleaned, let’s store it in Airtable automatically.

Goal

Create one new Airtable row for each form submission.

What we’re setting up

An Airtable – Create Record node.

Technical

  1. Add an Airtable node.
  2. Authenticate or connect your API token.
  3. Choose the base and table.
  4. Map the fields:
    • Name: {{$json["Full Name"]}}
    • Email: {{$json["Email"]}}
    • Phone: {{$json["Phone"]}}

Output

Each submission creates a clean new row in your Airtable table.

Step 4 – Add a delay

⌛ After saving to Airtable, it’s a good idea to insert a short pause — this prevents actions like Slack messages from stacking too fast.

Goal

Wait a few seconds before sending a Slack notification.

What we’re setting up

A Wait node for X seconds.

✅ Technical

  1. Add a Wait node.
  2. Choose Wait for X minutes.

Step 5 – Send a message to Slack

💬 Now that the record is stored, let’s send a Slack message to notify your team.

Goal Automatically alert your team in Slack when someone fills the form.

What we’re setting up

A Slack – Send Message node.

Technical

  1. Add a Slack node.
  2. Connect your account.
  3. Choose the target channel, like #leads.
  4. Use this message format:

New lead received!

Name: {{$json["Full Name"]}}

Email: {{$json["Email"]}}

Phone: {{$json["Phone"]}}

Output

Your Slack team is notified instantly, with all lead info in one clean message.

Workflow Complete

Your automation now looks like this:

Tally → Clean → Airtable → Wait → Slack

Every submission turns into clean data, gets saved in Airtable, and alerts your team on Slack — fully automated, no extra work.

Looking for professional automation support? Try 0vni – Agence automatisation.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Schedule Trigger

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.2

Block 2 - Search records

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 3 - Send a message

Type / Role
n8n-nodes-base.slack - slack
Config choices
Version 2.3

Block 4 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 6 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 7 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 8 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 9 - Sticky Note6

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 10 - Sticky Note7

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 11 - Sticky Note8

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 12 - Sticky Note9

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 13 - Sticky Note10

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 14 - Sticky Note11

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 15 - Sticky Note12

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Sticky Note13

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 17 - Sticky Note14

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 18 - Sticky Note15

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 19 - Sticky Note16

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 20 - Sticky Note17

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 21 - Sticky Note18

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 22 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Automate a Tally form: store with Airtable, notify via Slack
Complexity advanced
Nodes 22
Categories Lead Generation
Author Baptiste Fort
Published 28 Jun 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/5437/5437.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Automate a Tally form: store with Airtable, notify via Slack do?

Workflow Goal Still manually checking form responses in your inbox? What if every submission landed neatly in Airtable — and you got a clean Slack message instantly? That’s exactly what this wor...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Lead Generation use case.