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

RoleEmailPasswordAccess
PLATFORM_OPSplatform-ops@eventzr.testTestPlatformOps123!Admin + GDPR endpoints
USERdev@eventzr.testTestDev123!Public endpoints only
DPOdpo@eventzr.testTestDPO123!GDPR endpoints

Test Tenant

FieldValue
System Tenant ID00000000-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.

CategoryServicesStatus
AI Stack (ECS Fargate)llm-orch-svc, aibrain-svc, cypher-svc, mcp-svc, studio-svc, rag-svc, eventml-svcoperational
Core (Lambda)auth-svc, user-svc, event-svc, team-svc, wallet-svc, subscriptions-svc, integration-hub-svc, notify-svc, search-svcoperational
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.

TierPublic StatusNotificationsAI Features
Base (Free)YesEmail onlyNo
Student / StartupYesEmail + WebhookNo
ProYesAll channelsSummary + Root Cause
ProMax / EnterpriseYesAll channelsFull (+ Impact Prediction)