👨🏫Instructor Onboarded
instructor.onboardedv1.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
idstring
required
Instructor ID
namestring
required
Instructor name
specialtiesarray
List of instructor specialties
Array of:
itemsstring
onboardedAtstring
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 });
});