Webhooks

Configure webhook URLs to receive notifications when events occur. Your server will receive POST requests with event data.
Configured Webhooks
Event URL Status Actions
No webhooks configured
Add/Edit Webhook
Used to sign webhook payloads for verification
Payload Examples
{
  "event": "call_started",
  "timestamp": "2025-01-15T10:30:00Z",
  "data": {
    "callSid": "CA...",
    "fromNumber": "+15551234567",
    "toNumber": "+15559876543"
  }
}
{
  "event": "appointment_booked",
  "timestamp": "2025-01-15T10:35:00Z",
  "data": {
    "confirmationCode": "SALON-ABC123",
    "customerName": "John Smith",
    "service": "Haircut & Style",
    "stylist": "Sarah Johnson",
    "appointmentDate": "2025-01-20T14:00:00Z",
    "totalPrice": 65.00
  }
}
{
  "event": "sponsor_inquiry",
  "timestamp": "2025-01-15T10:40:00Z",
  "data": {
    "contactName": "Jane Doe",
    "companyName": "Acme Corp",
    "phone": "+15551234567",
    "interestedTier": "Premium"
  }
}