Quick Start Guide
Get Lead Warmer integrated with your system in under 15 minutes.
Prerequisites
Before you begin, ensure you have:
- An active Lead Warmer account
- Admin access to your CRM or lead source
- Your organization’s webhook URL (found in Settings > Webhooks)
Step 1: Get Your Webhook URL
- Log in to your Lead Warmer dashboard
- Navigate to Settings > Webhooks
- Copy your unique webhook URL:
https://api.leadwarmer.net/webhooks/ingest/{your-webhook-id}Step 2: Configure Your Lead Source
Configure your CRM or lead management system to send webhooks to Lead Warmer when new leads are created.
Required Webhook Payload
Send a POST request with the following JSON structure:
{
"lead_id": "unique-lead-identifier",
"email": "lead@example.com",
"first_name": "John",
"last_name": "Doe",
"company_name": "Acme Corp",
"source": "website-form"
}Optional Fields
You can include additional fields for more personalized videos:
{
"job_title": "Marketing Director",
"phone": "+1-555-0123",
"industry": "Technology",
"custom_fields": {
"product_interest": "Enterprise Plan",
"meeting_requested": true
}
}Step 3: Create Your First Campaign
- Go to Campaigns > Create New
- Name your campaign (e.g., “New Lead Welcome”)
- Set up campaign rules:
- Source equals:
website-form
- Source equals:
- Write your video script with variables:
Hi {{first_name}}, I noticed you're from {{company_name}}.
I wanted to reach out personally to see how we can help...- Click Save and Activate
Step 4: Test Your Integration
Send a test webhook to verify everything works:
curl -X POST https://api.leadwarmer.net/webhooks/ingest/{your-webhook-id} \
-H "Content-Type: application/json" \
-H "X-Signature-Key: {your-webhook-secret}" \
-d '{
"lead_id": "test-001",
"email": "test@example.com",
"first_name": "Test",
"last_name": "User",
"company_name": "Test Company",
"source": "website-form"
}'What Happens Next
- Lead Warmer receives your webhook
- The lead is matched against your campaign rules
- A personalized video is generated using your script
- The video is emailed to the lead automatically
Next Steps
- Core Concepts - Learn how campaigns and routing work
- Webhook Configuration - Advanced webhook settings
- Campaign Rules - Create sophisticated targeting rules