Event Ingestion

Create and update events programmatically via the API.

Create an Event (curl)

curl -X POST https://api.yompster.com/api/events \
 -H "Authorization: Bearer $TOKEN" \
 -H "Content-Type: application/json" \
 -d '{
   "title": "Team Sync",
   "startTime": "2025-09-01T10:00:00Z",
   "durationMinutes": 60
 }'

By default, events last one hour if no duration is specified.