Webhooks API
Receive real-time event notifications via HTTP POST to your endpoints.
Events
room.startedA room became active (first participant joined)
room.endedA room ended (all participants left)
participant.joinedA participant joined a room
participant.leftA participant left a room
recording.startedA recording started
recording.completeA recording finished and is ready to download
Payload format
{
"id": "evt_uuid",
"type": "room.started",
"tenantId": "uuid",
"createdAt": "2025-01-01T00:00:00Z",
"data": { /* event-specific data */ }
}Signature verification
Each request includes a X-RelayKit-Signature header containing an HMAC-SHA256 signature. Verify it with your endpoint's secret.