📅Session Updated

session.updated
v1.0

Triggered when session details are modified

Webhook Delivery

This event can be delivered to your webhook endpoint

Real-time Streaming

This event is available via WebSocket or SSE

Event Details

Schema definition and example payload

Event Properties

object
id
string
required

Unique session identifier

changes
object
required

Object containing the fields that were changed

previousValues
object

Previous values of changed fields

Integration Examples

Example code for handling this event

// Handle session.updated event
app.post('/webhook', async (req, res) => {
  const event = req.body;
  
  if (event.type === 'session.updated') {
    // Process the event
    console.log('Received Session Updated:', event.data);
    
    // Your business logic here
    
    
    
    // Notify participants
    await notifySessionUpdate(event.data);
  }
  
  res.status(200).json({ received: true });
});