Voice AI Connection

Connect your AI voice agent to start capturing leads automatically

Setup Required
Simulate a CallFull Pipeline Test

Test the entire pipeline: call intake, lead scoring, priority routing, and notification. This creates a real lead in your dashboard.

Recent Incoming Leads

No leads yet. Run a simulation above or connect a voice agent.

1
Your Webhook URLs
https://ccgjobs.bar/api/webhooks/voice-agent
https://ccgjobs.bar/api/webhooks/call-status

Paste these URLs into your voice AI platform's webhook configuration. The system auto-detects Vapi, Retell, and Bland payloads.

2
Generate API Key

Create an API key and add it to your voice platform's webhook headers as X-Webhook-Key

3
Test Connection
4
Platform Setup Guides

Vapi Setup Steps

  1. Go to your Vapi dashboard and select your assistant
  2. Navigate to Advanced → Server URL
  3. Paste your webhook URL into the Server URL field
  4. Add a custom header: X-Webhook-Key: your-api-key
  5. Enable "End of Call Report" webhook event
  6. Configure structured data extraction to extract: callerName, suburb, serviceType, postcode
{
  "message": {
    "type": "end-of-call-report",
    "call": { "id": "call_abc123", "customer": { "number": "+61412345678" } },
    "analysis": {
      "summary": "Customer wants exposed aggregate driveway in Bulimba",
      "structuredData": {
        "callerName": "John Smith",
        "suburb": "Bulimba",
        "serviceType": "Exposed Aggregate Driveway"
      }
    }
  }
}