A Cloudflare Worker that ingests form submissions over HTTP and stores them in a D1 database.
Accepts a raw JSON form submission (no authentication required), stores it in D1, and returns a UUID receipt. CORS is fully open, so browser clients on any origin can post directly.
# Submit a form payload — no auth required
curl -X POST https://shannon-webhook-management.bradycusack.dev/webhook-ingest -H "Content-Type: application/json" -d '{"name":"Alice","email":"alice@example.com"}'
# 201 → {"id":"<uuid>","received_at":"<ISO 8601>"}