Webhook Manager

Connect SOS Home Solutions to n8n, Zapier, Make, or any HTTP endpoint

REST API — For n8n, Voice Agents & Direct Integrations
Your platform exposes a full REST API at /api/v1/. Use Bearer token authentication with your API secret.
POST/api/v1/leadsCreate lead from voice agent / chatbot
GET/api/v1/leadsList all leads
PATCH/api/v1/leads/:id/statusUpdate lead status
POST/api/v1/jobsCreate a job
PATCH/api/v1/jobs/:idUpdate job status / assign technician
GET/api/v1/techniciansList all technicians
GET/api/v1/customersList all customers
POST/api/v1/sms/sendSend SMS to a customer
# Example: Create a lead from a voice agent
curl -X POST https://soshomesolutionsfl.com/api/v1/leads \
  -H "Authorization: Bearer YOUR_API_SECRET" \
  -H "Content-Type: application/json" \
  -d '{"name":"John Smith","phone":"+13055551234","service":"AC Repair","urgency":"emergency"}'
Test event type:
Webhook Endpoints (0)
Events are pushed to these URLs in real time. Compatible with Zapier, n8n, Make, and any HTTP endpoint.

No webhook endpoints configured yet.

Add your Zapier or n8n webhook URL to start receiving events.

Event Reference
All webhook events include a standard payload with event type, timestamp, and data.
lead_created

Fires when a new lead is submitted

lead_updated

Fires when a lead status changes

job_created

Fires when a new job is created

job_scheduled

Fires when a job is scheduled

job_assigned

Fires when a technician is assigned

job_completed

Fires when a job is marked complete

review_request_triggered

Fires when a review SMS is sent

technician_status_changed

Fires when technician availability changes

// Standard webhook payload structure
{
  "event": "lead_created",
  "timestamp": "2026-03-08T10:00:00.000Z",
  "version": "1.0",
  "source": "sos-home-solutions",
  "data": { ... event-specific data ... }
}
💬 Chat with us on WhatsApp!