SUKI's integration surface is deliberately small: point your number at her, subscribe to call events, and read what she writes into the suite — contacts, bookings, tickets — over the same APIs every product shares.
Register a webhook, take a test call, watch the events arrive — signed, idempotent, retried on failure like every webhook on the platform.
curl -X POST https://api.softknack.com/voice/v1/webhooks \ -H "Authorization: Bearer sk_test_..." \ -H "Content-Type: application/json" \ -d '{ "url": "https://yourapp.com/hooks/suki", "events": ["call.completed", "call.escalated"] }'
call.startedA real caller connected (robocalls never fire events). Includes caller match if the contact is known.
call.completedThe full record: duration, language, sentiment, outcome tag, recording and transcript links, and IDs of everything created.
call.escalatedHanded to a human — includes the trigger (sentiment, rule, explicit request) and the live transcript so far.
call.message_takenNobody was available; a structured message was captured and a ticket opened. Ticket ID included.
appointment.bookedA booking made mid-call — same payload shape as SK Calendar's own event, because it is SK Calendar's event.
knowledge.updatedThe owner changed SUKI's knowledge (by voice or dashboard). Versioned; useful for compliance trails.
HMAC-SHA256Every delivery signed; verify with the shared helper. At-least-once delivery with the platform retry schedule and dead-letter replay.
Idempotency-KeyDedupe on event id. Replays of the same key return the original result — safe consumers by default.
ctc_*The caller SUKI heard is the same contact your chat widget, tickets and invoices reference. Prefixed ULIDs across the suite.
mcp.softknack.comCall summaries, outcomes and knowledge are exposed as scoped MCP tools — your own agents can read what SUKI did and act on it.
Auth, pagination, errors and the complete event schemas live in the docs hub — written once for the whole platform.
The 50-call demo works for integration testing too — test keys, real events.
Start the free demo