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 scenarioClick the + to add a moduleSearch for Webhooks and select itChoose Custom webhook2. Create Webhook
Click Add to create a new webhookGive it a name (e.g., "Atlas Form Submissions")Click SaveCopy the generated webhook URL3. Add to Atlas
In Atlas dashboard, go to your project settingsPaste the Make webhook URL in the Webhook URL fieldSave changes4. Determine Data Structure
In Make, click Run onceSubmit a test form in AtlasMake will automatically detect the data structure5. Add Actions
Now add modules to your scenario:
Create a Google Sheet rowSend an emailAdd to AirtableUpdate a CRMWebhook Payload
Make receives this data from Atlas:
{
"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 webhookSet up filters on each pathRoute submissions based on form field valuesError Handling
Add error handlers to manage failures:
Right-click on any moduleAdd Error HandlerChoose how to handle failuresTroubleshooting
Scenario not triggering
Make sure the scenario is active (toggle is ON)Verify the webhook URL in AtlasCheck Make's execution historyData not mapping correctly
Re-run the webhook to refresh data structureUse the data inspector to see available fieldsResources
Make Webhooks DocumentationAtlas Webhooks Guide