A
Atlas
...

Airtable Integration

Automatically add form submissions to your Airtable bases using webhooks and Airtable Automations.

Quick Setup

1. Create Airtable Automation

  • Open your Airtable base
  • Go to Automations
  • Click Create automation
  • Select When webhook received as the trigger
  • 2. Copy Webhook URL

    Airtable will generate a unique webhook URL:

    https://hooks.airtable.com/workflows/v1/...

    3. Add to Atlas

  • In Atlas dashboard, go to your project settings
  • Paste the Airtable webhook URL in the Webhook URL field
  • Save changes
  • 4. Set Up Data Structure

  • Submit a test form in Atlas
  • In Airtable, the automation will detect the data
  • Click Generate field configurations
  • 5. Create Record Action

  • Add an action → Create record
  • Select your table
  • Map webhook fields to table columns:
  • - submission.data.name → Name field

    - submission.data.email → Email field

    - etc.

    Webhook Payload

    Airtable receives this data:

    json
    {
      "event": "submission.created",
      "submission": {
        "data": {
          "name": "Jane Doe",
          "email": "jane@example.com",
          "message": "Hello!"
        },
        "created_at": "2024-01-15T10:30:00Z"
      }
    }

    Field Mapping

    Atlas FieldMap To
    submission.data.{field}Your table columns
    submission.idSubmission ID column
    submission.created_atDate column
    form.nameForm name column

    Use Cases

  • Customer feedback tracking
  • Job application management
  • Event registration
  • Content submissions
  • Survey responses
  • Resources

  • Airtable Webhook Automations
  • Atlas Webhooks Guide