Seed Data
Pre-populated test data available in the staging environment for development and testing.
Staging Environment
The staging environment is pre-seeded with service health data for all 62 EventZR services, sample incidents, and maintenance windows. Use the test credentials below to access admin, AI, and GDPR endpoints.
Test Credentials
| Role | Password | Access | |
|---|---|---|---|
| PLATFORM_OPS | platform-ops@eventzr.test | TestPlatformOps123! | Admin + GDPR endpoints |
| USER | dev@eventzr.test | TestDev123! | Public endpoints only |
| DPO | dpo@eventzr.test | TestDPO123! | GDPR endpoints |
Test Tenant
| Field | Value |
|---|---|
| System Tenant ID | 00000000-0000-0000-0000-000000000000 |
Getting a JWT Token
Login as Platform Opsbash
curl -X POST https://535ubezkse.execute-api.us-east-1.amazonaws.com/auth/v1/login \
-H "Content-Type: application/json" \
-d '{"email":"platform-ops@eventzr.test","password":"TestPlatformOps123!"}'
# Save the token
export TOKEN="<accessToken from response>"Pre-Seeded Service Health (62 Services)
All 62 EventZR services are pre-seeded with operational status. Services include the 7 AI services on ECS Fargate and 55 Lambda services.
| Category | Services | Status |
|---|---|---|
| AI Stack (ECS Fargate) | llm-orch-svc, aibrain-svc, cypher-svc, mcp-svc, studio-svc, rag-svc, eventml-svc | operational |
| Core (Lambda) | auth-svc, user-svc, event-svc, team-svc, wallet-svc, subscriptions-svc, integration-hub-svc, notify-svc, search-svc | operational |
| Domain (Lambda) | 46 additional services (ads-svc through webify-svc) | operational |
Example API Calls
Check global status (public, no auth)bash
curl -X GET https://535ubezkse.execute-api.us-east-1.amazonaws.com/status/v1
# Response:
# {
# "data": {
# "status": "operational",
# "message": "All systems operational",
# "activeIncidents": 0,
# "services": [ ... ],
# "lastUpdated": "2026-02-24T12:00:00.000Z"
# }
# }Create a test incident (admin, requires auth)bash
curl -X POST https://535ubezkse.execute-api.us-east-1.amazonaws.com/status/v1/_admin/incidents \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-H "X-Idempotency-Key: $(uuidgen)" \
-d '{
"title": "Elevated error rates on auth-svc",
"description": "Users experiencing intermittent 500 errors during login",
"severity": "major",
"affectedServices": ["auth-svc"],
"isPublic": true
}'Subscribe to notifications (public, rate-limited)bash
curl -X POST https://535ubezkse.execute-api.us-east-1.amazonaws.com/status/v1/subscriptions \
-H "Content-Type: application/json" \
-d '{
"email": "dev@example.com",
"channels": ["email"],
"services": ["auth-svc", "event-svc"],
"severity": ["critical", "major"]
}'Get AI incident summary (requires PRO+ tier)bash
curl -X GET "https://535ubezkse.execute-api.us-east-1.amazonaws.com/status/v1/ai/incidents/<incident-id>/summary" \
-H "Authorization: Bearer $TOKEN"
# Response:
# {
# "data": {
# "summary": "Auth service experienced elevated error rates...",
# "rootCause": "Database connection pool exhaustion...",
# "impact": "Approximately 5% of login attempts affected...",
# "creditsUsed": 5
# }
# }Subscription Tiers
AI features are gated by subscription tier. Public endpoints are available to all users.
| Tier | Public Status | Notifications | AI Features |
|---|---|---|---|
| Base (Free) | Yes | Email only | No |
| Student / Startup | Yes | Email + Webhook | No |
| Pro | Yes | All channels | Summary + Root Cause |
| ProMax / Enterprise | Yes | All channels | Full (+ Impact Prediction) |