Seed Data
Pre-populated test data available in the staging environment for development and testing.
Staging Environment
The staging environment is pre-seeded with demo reviews, NPS campaigns, review replies, and sample entities. Use the test credentials from the Authentication guide to access this data.
Demo Tenant
| Field | Value |
|---|---|
| Tenant ID | 00000000-0000-0000-0000-000000000001 |
Test Users
| Role | Password | |
|---|---|---|
| Organizer | organizer@eventzr.com | Password123! |
| User | user@eventzr.com | Password123! |
Sample Seed Data
The staging environment includes the following pre-seeded data for the demo tenant.
Demo Reviews (5)
| Title | Rating | Entity Type | Sentiment | Status |
|---|---|---|---|---|
| Amazing conference! | ***** | event | positive | published |
| Great venue setup | ***** | venue | positive | published |
| Decent experience | ***** | event | neutral | published |
| Could be better | ***** | speaker | negative | published |
| Outstanding speaker | ***** | speaker | positive | draft |
Additional Seed Data
| Entity | Count | Notes |
|---|---|---|
| NPS Campaigns | 1 | Active campaign with sample NPS scores |
| Review Replies | 2 | Organizer responses to demo reviews |
| Sample Events | 3 | Referenced by entityType=event reviews |
| Sample Venues | 2 | Referenced by entityType=venue reviews |
Quick Access
List all reviewsbash
curl -X GET "https://535ubezkse.execute-api.us-east-1.amazonaws.com/reviews/v1/reviews?limit=20" \
-H "Authorization: Bearer $TOKEN" \
-H "x-tenant-id: 00000000-0000-0000-0000-000000000001"Create a reviewbash
curl -X POST "https://535ubezkse.execute-api.us-east-1.amazonaws.com/reviews/v1/reviews" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-H "x-tenant-id: 00000000-0000-0000-0000-000000000001" \
-d '{
"entityType": "event",
"entityId": "evt_abc123xyz",
"rating": 5,
"title": "Fantastic event!",
"content": "One of the best conferences I have ever attended.",
"tags": ["well-organized", "great-speakers"]
}'Subscription Tiers
Review quotas and feature access vary by subscription tier.
| Tier | Reviews/Month | NPS Campaigns | AI Sentiment | Imports |
|---|---|---|---|---|
| Base (Free) | 50 | 1 | No | No |
| Student | 100 | 2 | No | No |
| Startup | 500 | 5 | Limited | 1 source |
| Pro | 5,000 | 25 | Yes | 3 sources |
| ProMax | 25,000 | 100 | Yes + ZAR | 6 sources |
| Enterprise | Unlimited | Unlimited | Full | Unlimited |