Seed Data
Pre-populated test data available in the staging environment for development and testing.
Staging Environment
The staging environment is pre-seeded with report templates and sample data. Use the test credentials from the Authentication guide to access this data.
Demo Tenant
| Field | Value |
|---|---|
| Tenant ID | a0000001-0000-0000-0000-000000000001 |
| System Tenant ID | 00000000-0000-0000-0000-000000000000 |
Test Credentials
| Role | Password | Access | |
|---|---|---|---|
| Developer | dev@eventzr.com | Password123! | Templates, Exports, Webhooks |
| Admin | admin@eventzr.com | Password123! | All endpoints including Admin panel |
| System | system@eventzr.com | Password123! | System health + metrics endpoints |
Pre-Built Report Templates (6)
These templates are pre-seeded in the staging environment for testing.
| Template Name | Type | Formats | Status |
|---|---|---|---|
Monthly Sales Report | financial | PDF, XLSX | active |
Event Attendance Summary | analytics | PDF, CSV | active |
Campaign Performance | marketing | PDF, XLSX | active |
Revenue Breakdown | financial | PDF, XLSX, JSON | active |
Ticket Sales by Venue | operations | CSV, XLSX | active |
User Engagement Metrics | analytics | PDF, JSON | active |
Quick Access
List all templatesbash
curl -X GET "https://535ubezkse.execute-api.us-east-1.amazonaws.com/reports/v1/templates" \
-H "Authorization: Bearer $TOKEN"Create an export job (PDF)bash
curl -X POST "https://535ubezkse.execute-api.us-east-1.amazonaws.com/reports/v1/exports" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: $(uuidgen)" \
-d '{
"templateId": "<template-id-from-list>",
"format": "pdf",
"parameters": {
"dateFrom": "2026-01-01",
"dateTo": "2026-02-24"
}
}'Check export statusbash
curl -X GET "https://535ubezkse.execute-api.us-east-1.amazonaws.com/reports/v1/exports/<export-id>/lite" \
-H "Authorization: Bearer $TOKEN"Get admin quota usagebash
curl -X GET "https://535ubezkse.execute-api.us-east-1.amazonaws.com/reports/v1/admin/quota" \
-H "Authorization: Bearer $TOKEN"Subscription Tiers
Report generation quotas vary by subscription tier.
| Tier | Daily Reports | Monthly Reports | Scheduled Reports | AI Narratives |
|---|---|---|---|---|
| Base (Free) | 5 | 50 | No | No |
| Student | 10 | 100 | 2 | No |
| Startup | 25 | 500 | 5 | Limited |
| Pro | 100 | 2,000 | 25 | Yes |
| Enterprise | Unlimited | Unlimited | Unlimited | Yes + ZAR |