Total Leads
0
all time
Booked
0
deals closed
Conversion
0%
booked / total
AI Replied
0
auto responses
Awaiting
0
no reply yet
Lead Source Status Classify Date
No leads yet. Use the test form below to simulate inbound.
Total Targets
in pipeline
Emails Sent
all time
Reply Rate
30-day
Converted
to inbound lead
A/B Variant Breakdown
Variant A — Pain-Led
Sends
0
Opens
0
Open Rate
0%
Replies
0
Reply Rate
0%
Conversions
0
Variant B — Social Proof + Urgency
Sends
0
Opens
0
Open Rate
0%
Replies
0
Reply Rate
0%
Conversions
0
Target Type Sequence Status Touches Added
Loading outbound pipeline…

Add Outbound Target


  

Test the pipeline

POST to POST /api/inbound/webhook


  
e.preventDefault(); const btn = document.getElementById('test-btn'); btn.textContent = 'Processing…'; btn.disabled = true; const data = { name: e.target.name.value, email: e.target.email.value, company: e.target.company.value, source: e.target.source.value, message: e.target.message.value, }; const el = document.getElementById('test-result'); el.style.display = 'block'; el.className = ''; try { const res = await fetch('/api/inbound/webhook', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data), }); const json = await res.json(); el.textContent = JSON.stringify(json, null, 2); el.style.color = json.success ? '#6ec96e' : '#E8732A'; if (json.success) setTimeout(() => location.reload(), 2000); } catch(err) { el.textContent = 'Error: ' + err.message; el.style.color = '#E8732A'; } btn.textContent = 'Submit & Trigger AI'; btn.disabled = false; }