Webhooks
Coming soon
Webhook support is planned for a future release of VoxKey.
Planned features
- Event-driven notifications -- receive HTTP callbacks when events occur in your realm
- Configurable events -- subscribe to specific events (user created, user logged in, role assigned, etc.)
- Retry logic -- automatic retries with exponential backoff for failed deliveries
- Signature verification -- HMAC signatures on webhook payloads for security
- Delivery logs -- view webhook delivery history and debug failures in the admin panel
Example payload (planned)
{
"event": "user.created",
"realm_id": "01HQ...",
"timestamp": "2026-03-28T12:00:00Z",
"data": {
"user_id": "01HQ...",
"email": "jane@example.com",
"name": "Jane Doe"
}
}
Stay tuned for updates.