Seed Data

Pre-seeded test data available in the staging environment for testing domains-svc endpoints.

Test Accounts

Staging Credentials

These accounts are pre-seeded in the staging environment. Passwords reset daily.

RoleEmailPasswordTier
Developerdev@eventzr.comPassword123!PRO
Adminadmin@eventzr.comPassword123!ENTERPRISE

Quick Start

Get a JWT token, then use the API to manage domains. The staging environment connects to a real AWS infrastructure (Aurora PostgreSQL, ElastiCache Redis, MSK Kafka).

Step 1: Get a tokenbash
curl -s -X POST https://535ubezkse.execute-api.us-east-1.amazonaws.com/auth/v1/login \
  -H "Content-Type: application/json" \
  -d '{"email":"dev@eventzr.com","password":"Password123!"}' | jq -r '.data.accessToken'
Step 2: List domainsbash
export TOKEN="<token-from-step-1>"
curl -s https://535ubezkse.execute-api.us-east-1.amazonaws.com/domains/v1/domains \
  -H "Authorization: Bearer $TOKEN" | jq .
Step 3: Register a new domainbash
curl -s -X POST https://535ubezkse.execute-api.us-east-1.amazonaws.com/domains/v1/registrations \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "domain": "test-event.example.com",
    "registrar": "manual"
  }' | jq .
Step 4: Verify the domainbash
curl -s -X POST https://535ubezkse.execute-api.us-east-1.amazonaws.com/domains/v1/domains/<domain-id>/verify \
  -H "Authorization: Bearer $TOKEN" | jq .

API Endpoint Categories

The Domains Service exposes 73 endpoints across 66 paths, organized into these categories:

CategoryBase PathDescription
Domains/domains/v1/domainsDomain registration, verification, listing, lifecycle
Custom Domains/domains/v1/custom-domainsWhite-labeled custom domains with automated SSL + CDN
DNS/domains/v1/domains/:id/dnsDNS record CRUD (A, AAAA, CNAME, MX, TXT, etc.)
SSL/domains/v1/domains/:id/sslSSL certificate issuance, renewal, revocation
CDN/domains/v1/domains/:id/cdnCloudFront CDN provisioning, cache purging, metrics
Routes/domains/v1/domains/:id/routesDomain route mappings and path configurations
Transfer/domains/v1/transfersDomain transfer between tenants
AI/domains/v1/aiAI-powered domain suggestions, valuation, SEO analysis
Health/domains/v1/_internal/healthzHealth check and readiness probes