Zapier Integration
Connect Atlas Forms to 6,000+ apps with our native Zapier integration. No webhooks to configure - just add your API key.
Quick Setup
1. Get Your API Key
fep_)2. Create Your Zap
3. Connect Your Account
That's it! Your Zap is ready to receive form submissions.
Field Mapping
All form fields are available as variables in your Zap:
| Field | Description | Example |
|---|---|---|
submission_id | Unique submission ID | 550e8400-e29b... |
form_name | Name of the form | Contact Form |
form_id | Form identifier | form_abc123 |
submission_data | All form fields as object | {"name": "...", "email": "..."} |
submitted_at | Timestamp | 2025-01-05T12:00:00Z |
files | File uploads array | [{"url": "...", "name": "..."}] |
Multiple Zaps Per Form
You can create multiple Zaps for the same form. Each Zap operates independently - perfect for sending data to multiple destinations.
Popular Zap Templates
Form → Google Sheets
Automatically add new submissions to a spreadsheet for tracking and analysis.
Form → Slack
Get instant notifications in your team Slack channel when forms are submitted.
Form → HubSpot
Create or update contacts in your CRM from form submissions.
Form → Email
Send customized email notifications to your team or respondents.
Form → Notion
Create database entries in Notion from form data.
Form → Airtable
Add submissions to an Airtable base for advanced data management.
Troubleshooting
"API key invalid"
fep_)"No forms found"
"Not receiving submissions"
API Key Security
Webhook Payload Format
When a form is submitted, Zapier receives this data:
{
"id": "sub_abc123",
"event": "submission.created",
"timestamp": "2025-01-05T12:00:00Z",
"form": {
"id": "form_xyz789",
"name": "Contact Form",
"slug": "contact"
},
"submission": {
"id": "sub_abc123",
"data": {
"name": "Jane Doe",
"email": "jane@example.com",
"message": "Hello!"
},
"files": [],
"metadata": {
"ip": "192.0.2.1",
"user_agent": "Mozilla/5.0...",
"submitted_from": "https://example.com/contact"
}
},
"form_id": "form_xyz789",
"form_name": "Contact Form",
"submission_id": "sub_abc123",
"submission_data": {
"name": "Jane Doe",
"email": "jane@example.com",
"message": "Hello!"
},
"submitted_at": "2025-01-05T12:00:00Z"
}