Automatically log every completed HuskyVoiceAI call into a Google Sheet for tracking, analytics, and reporting.
Workflow:
HuskyVoiceAI → (call.completed webhook) → Make.com → Google Sheets
HuskyVoiceAI account with Webhooks enabled
Make.com account (Cloud or self-hosted)
Google account with edit access to the target Sheet
A Google Sheet prepared with headers
Create a new Google Sheet named: HuskyVoice Call Log
Add headers in row 1:
event_id, event_type, created_at, call_id, status, direction, call_to, duration_seconds, agent_name, sentiment, interest_level, summary, next_steps, recording_url, call_transcript, triggered_at, completed_at
Log in to Make.com → Create a new Scenario
Add Webhook → Custom Webhook module
Click Add → Custom Webhook → Create new webhook
Copy the generated webhook URL
Enable JSON parsing
Log in to HuskyVoiceAI → Integrations → Webhooks → Add Webhook
Paste the Make.com webhook URL from Step 2
Select event: call.completed
Save the webhook
Trigger a test call to ensure HuskyVoiceAI sends data
Add a Set/Map module after the webhook
Map incoming JSON fields to Google Sheet columns:
event_id → event_id
event_type → event_type
created_at → created_at
call_id → data.call_id
status → data.status
direction → data.call_direction
call_to → data.call_to
duration_seconds → Number(data.call_duration_seconds)
agent_name → data.agent_name
sentiment → data.call_analytics.sentiment
interest_level → data.call_analytics.interest_level
summary → data.call_analytics.summary
next_steps → data.call_analytics.next_steps
recording_url → data.call_recording
call_transcript → flatten data.call_transcript to text
triggered_at → data.call_triggered_at
completed_at → data.completed_at
Add Google Sheets → Append Row module
Connect your Google account
Select the target Sheet and worksheet
Map the fields from Step 4 to the corresponding Sheet columns
Test by sending a sample row to the Sheet
Trigger a test call in HuskyVoiceAI
Confirm a new row appears in Google Sheets
Publish the scenario to run automatically
Filter calls: Add an IF module to log only outbound or longer calls
Prevent duplicates: Check event_id before appending a row
Error handling: Use Make.com error handlers for retries