API Reference
Events API
Manage events programmatically. Requires a secret key with management API access (Growth+).
List Events
GET /v1/eventsReturns all events in the project.
Create Event
POST /v1/events{
"title": "Product Onboarding",
"description": "Learn how to get started with our platform",
"type": "on_demand",
"settings": {
"completionThreshold": 80
}
}Get Event
GET /v1/events/{eventId}Returns full event details including processing status, viewer counts, and configuration.
Update Event
PATCH /v1/events/{eventId}Update event title, description, settings, or status.
Delete Event
DELETE /v1/events/{eventId}Permanently removes the event and all associated data. This action cannot be undone.