Create a Slack incoming webhook
In your Slack workspace, create an incoming webhook for the channel where you want Flux notifications. Copy the webhook URL - this is where your automation will POST messages.
// Slack + Flux
Post Flux card notifications to Slack channels. Know when cards move, who is assigned, and what shipped - without opening the board. Slack webhooks plus the Flux API.
In your Slack workspace, create an incoming webhook for the channel where you want Flux notifications. Copy the webhook URL - this is where your automation will POST messages.
Use Zapier, Make, n8n, or a custom script to bridge Flux and Slack. The automation polls the Flux API for board changes or listens to Flux SSE events, then formats and POSTs messages to your Slack webhook.
Build message payloads using Slack's Block Kit format. Include the card title, the column it moved to, the assignee, and a link back to the Flux board. Rich formatting helps your team scan updates quickly.
Not every card change needs a Slack message. Filter your automation to notify on specific events: cards moving to Done, high-priority cards created, or cards overdue. Reduce noise, increase signal.
Flux does not have a native Slack app. You connect the two systems using Slack incoming webhooks and an automation layer (Zapier, Make, n8n, or a custom script) that reads from the Flux API and posts to Slack. This gives you full control over message formatting and event filtering.
Yes, with a custom Slack bot or slash command. Build a small service that receives Slack slash command payloads, extracts the card title from the message text, and POSTs to the Flux /api/cards endpoint. This requires hosting a webhook receiver.
Flux supports SSE (Server-Sent Events) on a per-board basis. Connect an SSE client to /api/boards/{boardId}/events using your Flux API key. When events arrive, forward them to your Slack webhook. This gives near-instant notifications without polling.
// Stay in the loop
Flux REST API + Slack webhooks. Board notifications where your team already works.