BuildBaseBuildBase

Slack alerts

Route signup, payment, and subscription events to a Slack channel with an incoming webhook.

Slack alerts are admin-facing: they tell you that someone signed up or a payment failed. They are configured once per organization and need no code.

Set the incoming webhook URL in the BuildBase console under Settings → Slack, pick the events you care about, and messages start arriving.

Messages arrive as Slack Block Kit — a header, a summary line linking back to the console, a divider, then labelled fields:

New User Registered
─────────────────────────────
Alice Chen just signed up          [avatar]
─────────────────────────────
Email                 Signed up
[email protected]     15 Aug 2026, 09:12 UTC

The name in the summary line is a link to that user's console record. Each message also carries a plain-text text fallback — here New user registered: Alice Chen ([email protected]) — which is what Slack shows in notifications and previews.

Before you start

Create an incoming webhook in your Slack workspace and copy the URL. BuildBase validates it against Slack's hook URL format and ignores anything that does not match.

Selecting events

54 events can be routed to Slack, grouped in the console under these categories:

CategoryEventsCovers
Subscriptions & Trials10Created, upgraded, canceled, resumed, suspended, trial lifecycle
Workflows7Publish, pause, resume, instance completion and failure
Credits & Quota6Purchased, granted, revoked, expired, low balance, quota exceeded
Audience6Membership, list changes, and compliance state
Users & Workspaces5Registrations, blocks, workspace create and delete
Organization5Member invites, acceptances, removals
Authentication5Sign-in and credential events
Payments3Succeeded, failed, action required
Campaigns2Email campaign dispatch
Email Infrastructure2Sending domain and sender changes
Billing1Billing account changes

Warning

An empty event selection means every event is enabled, not none. The filter only applies when the list is non-empty. To stop alerts entirely, remove the webhook URL rather than clearing the event list.

Delivery behavior

BehaviorDetail
TransportA single POST to the webhook URL with a Slack Block Kit payload
Timeout5 seconds
FailuresLogged as a warning and discarded. Slack delivery never blocks or fails the originating request
RetriesNone. A failed post is not queued or retried
No webhook setSilent no-op
Invalid webhook URLTreated as unset — no error surfaces in the console
NamesWorkspace and user names are resolved for the message, falling back to raw IDs if the lookup fails

Messages link back to the console — user names link to /dashboard/admin/users/:id and workspaces to /dashboard/admin/workspaces/:id — so an alert is one click from the record.

Because delivery is fire-and-forget with no retry, treat Slack as an awareness channel rather than an audit trail. For guaranteed delivery, subscribe to the same events with webhooks, which have delivery logs and retries.

Slack alerts versus user notifications

These are two separate systems and they do not share configuration:

Slack alertsUser notifications
AudienceYour teamYour users
Configured byOrg admin, oncePer event, per workspace
ChannelsOne Slack channelEmail and push
Triggered bySystem eventsbb.notification.send() or system events
Honors user preferencesNoYes, when the event is userManaged

Next Steps