Collect, and route events to Slack from Fizzy.
Bubblehook gives you a private endpoint, validates Fizzy signatures, stores payloads, and fan-outs rich Slack cards only for the actions you care about.
Each user gets a private `/slug/webhook` endpoint with HMAC verification.
Choose the Fizzy actions to forward—no more noisy channels.
We format cards with column color dots, creator context, and links.
POST https://app.bubblehook.com/ab12cd/webhook
X-Webhook-Signature: <hmac-sha256>
X-Webhook-Timestamp: 2025-12-04T12:40:54Z
Content-Type: application/json
{
"id": "evt_123",
"action": "card_published",
"created_at": "2025-12-04T12:40:54Z",
"eventable": {
"title": "Logo refresh",
"column": { "name": "In Progress", "color": "Aqua" },
"url": "https://fizzy.localhost:3006/cards/42"
},
"creator": { "name": "David Heinemeier Hansson" }
}