Live

Shannon Enterprises Webhook Management

A Cloudflare Worker that ingests form submissions over HTTP and stores them in a D1 database.

Endpoint

POST /webhook-ingest

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.

Quick start — webhook

bash
# 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>"}

Configuration

Runtime
Cloudflare Workers
Storage
Cloudflare D1 (SQLite)
Auth
none — open ingest
CORS
disabled — all origins allowed