A
Atlas
...

Make Integration

Build sophisticated form workflows with Make's visual automation platform. Create multi-step scenarios with conditional logic and data transformation.

Quick Setup

1. Create a New Scenario

  • Log into Make and create a new scenario
  • Click the + to add a module
  • Search for Webhooks and select it
  • Choose Custom webhook
  • 2. Create Webhook

  • Click Add to create a new webhook
  • Give it a name (e.g., "Atlas Form Submissions")
  • Click Save
  • Copy the generated webhook URL
  • 3. Add to Atlas

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

  • In Make, click Run once
  • Submit a test form in Atlas
  • Make will automatically detect the data structure
  • 5. Add Actions

    Now add modules to your scenario:

  • Create a Google Sheet row
  • Send an email
  • Add to Airtable
  • Update a CRM
  • Webhook Payload

    Make receives this data from Atlas:

    json
    {
      "event": "submission.created",
      "form": {
        "id": "form-uuid",
        "name": "Contact Form"
      },
      "submission": {
        "id": "submission-uuid",
        "data": {
          "name": "Jane Doe",
          "email": "jane@example.com"
        },
        "files": [...],
        "metadata": {...}
      }
    }

    Advanced Features

    Routers

    Use routers to send data to different paths based on conditions:

  • Add a Router module after the webhook
  • Set up filters on each path
  • Route submissions based on form field values
  • Error Handling

    Add error handlers to manage failures:

  • Right-click on any module
  • Add Error Handler
  • Choose how to handle failures
  • Troubleshooting

    Scenario not triggering

  • Make sure the scenario is active (toggle is ON)
  • Verify the webhook URL in Atlas
  • Check Make's execution history
  • Data not mapping correctly

  • Re-run the webhook to refresh data structure
  • Use the data inspector to see available fields
  • Resources

  • Make Webhooks Documentation
  • Atlas Webhooks Guide