busy-monkey-10030
02/28/2025, 3:06 AMgray-monkey-83525
02/28/2025, 3:06 AMbusy-monkey-10030
02/28/2025, 3:10 AMinterface WebhookEvent {
event: 'room_finished';
room: Room;
}
gray-monkey-83525
02/28/2025, 3:10 AMWebhookEvent
interface for a "room_finished" event would look like this:
{
"event": "room_finished",
"room": {
"sid": "RM_xxx",
"name": "example-room",
"metadata": "optional-metadata"
}
}
This JSON object includes the event type (room_finished
) and a room
object containing the room's SID, name, and any optional metadata associated with the room.
Would you like more detailed information on handling this webhook event?
Sources:
- LiveKit Webhooks documentation 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.