Skip to main content

Webhooks

Webhooks allow you to receive real-time HTTP notifications when events occur in your Skaala account.
Coming Soon: Detailed webhook documentation is being prepared. For now, check the API Reference for webhook endpoints.

Quick Start

curl -X POST https://www.skaala.ai/api/v1/webhooks \
  -H "X-API-Key: sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://your-app.com/webhooks/skaala",
    "events": ["booking.created", "booking.cancelled"]
  }'

Available Events

  • booking.created - New booking created
  • booking.updated - Booking modified
  • booking.cancelled - Booking cancelled
  • call.completed - Call finished
  • contact.created - New contact added

Next Steps

API Reference

View webhook endpoints

Security

Verify webhook signatures