Testing: Events
Test event creation, registration, check-in, and feedback.
Demo Credentials
| Role | Password | Tenant | |
|---|---|---|---|
| Admin | daniel.harris@example.com | Demo1234! | demo-association |
Test 1: List Events
- 🟢 Easy — Click Around
- 🔵 Advanced — API / Code
- Log in as admin
- Click Events in the sidebar
- ✅ See 17 seeded events (conferences, galas, workshops, hackathons)
curl -s https://ams.14.jugaar.ai/api/v1/events/ \
-H "Authorization: Bearer $TOKEN"
Test 2: Event Statistics
- 🟢 Easy — Click Around
- 🔵 Advanced — API / Code
- Look for stats in the Events module
- ✅ See upcoming events, total attendance, revenue from tickets
curl -s https://ams.14.jugaar.ai/api/v1/events/stats \
-H "Authorization: Bearer $TOKEN"
Test 3: Event Details
- 🟢 Easy — Click Around
- 🔵 Advanced — API / Code
- Click on any event
- ✅ See title, date, location, capacity, attendees, sessions
# Get event ID from list, then:
curl -s https://ams.14.jugaar.ai/api/v1/events/{event_id} \
-H "Authorization: Bearer $TOKEN"
Test 4: Create Event
- 🟢 Easy — Click Around
- 🔵 Advanced — API / Code
- Click "Create Event" button
- Fill in title, date, location, capacity
- ✅ Event appears in the list
curl -X POST https://ams.14.jugaar.ai/api/v1/events/ \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"title": "Test Workshop",
"description": "A test event",
"event_date": "2026-08-15T10:00:00",
"location": "Online",
"capacity": 50,
"event_status": "upcoming"
}'