Zapier Integration Setup

Connect Prodigal AI to 5,000+ apps in minutes

✅ No coding required
🎯 Lead → Mailchimp Setup (10 Minutes)
1

Create Your Zapier Webhook

a. Go to Zapier and click "Create Zap"

b. Search for "Webhooks by Zapier" and select it

c. Choose "Catch Hook" as the event

d. Click Continue - Zapier will show you a Custom Webhook URL

Example: https://hooks.zapier.com/hooks/catch/1234567/abcdefg/

2

Copy Your Webhook URL

Copy the webhook URL that Zapier generated for you.

⚠️ Important: Copy the ENTIRE URL including the trailing slash

3

Update Your Code

Replace the webhook URL in these 3 files:

components/campaign/LeadCaptureForm.jsx

Line 11: Replace PASTE_YOUR_ZAPIER_WEBHOOK_URL_HERE

components/landing/CallToAction.jsx

Line 10: Replace PASTE_YOUR_ZAPIER_WEBHOOK_URL_HERE

components/landing/Hero.jsx

Line 8: Replace PASTE_YOUR_ZAPIER_WEBHOOK_URL_HERE

Example - What to Replace
// BEFORE:
const ZAPIER_WEBHOOK_URL = 'PASTE_YOUR_ZAPIER_WEBHOOK_URL_HERE';

// AFTER (use YOUR webhook URL):
const ZAPIER_WEBHOOK_URL = 'https://hooks.zapier.com/hooks/catch/1234567/abcdefg/';
4

Test the Webhook

Back in Zapier, click "Test trigger" and submit a test lead on your website.

✅ You should see test data appear in Zapier with the lead's email, persona, and timestamp.

5

Connect to Mailchimp

a. Click "Continue" in Zapier

b. Add an Action: Search for "Mailchimp"

c. Choose "Add/Update Subscriber"

d. Connect your Mailchimp account

e. Select your audience/list

f. Map the fields:

Mailchimp Field:
Zapier Data:
Email Address
email
Tags (optional)
tags
Merge Fields
persona, source

Turn On Your Zap!

Click "Publish" in Zapier to activate your automation.

🎉 Congratulations!

Every new lead will now automatically be added to your Mailchimp list with the right tags and persona data. Test it by submitting another lead!

What Data Gets Sent to Mailchimp
Payload Sent to Zapier
{
  "event": "lead.created",
  "email": "user@example.com",
  "persona": "leaders",           // or "entrepreneurs", "faith", "general"
  "timestamp": "2024-01-15T10:30:00Z",
  "source": "homepage_cta",        // which form they submitted
  "campaign": "leaders",
  "tags": [
    "leaders",                     // Their persona
    "prodigal-movement",           // Your brand
    "website-signup"               // Source identifier
  ]
}

💡 Pro Tips:

  • ✅ Use the persona field to segment your list (leaders, entrepreneurs, faith seekers)
  • ✅ Use the tags array for Mailchimp tags or segments
  • ✅ Use the source field to know which form converted them
  • ✅ Use the timestamp for automation timing

🎉 Ready to Automate!

You now have everything you need to connect Prodigal AI to thousands of apps via Zapier. Start with the "New Lead → Email List" zap for immediate impact!