👨‍🏫Instructor Onboarded

instructor.onboarded
v1.0

Triggered when an instructor completes onboarding

Webhook Delivery

This event can be delivered to your webhook endpoint

Real-time Streaming

This event does not support real-time streaming

Event Details

Schema definition and example payload

Event Properties

object
id
string
required

Instructor ID

name
string
required

Instructor name

specialties
array

List of instructor specialties

Array of:
items
string
onboardedAt
string
required
date-time

Integration Examples

Example code for handling this event

// Handle instructor.onboarded event
app.post('/webhook', async (req, res) => {
  const event = req.body;
  
  if (event.type === 'instructor.onboarded') {
    // Process the event
    console.log('Received Instructor Onboarded:', event.data);
    
    // Your business logic here
    
    
    
  }
  
  res.status(200).json({ received: true });
});