Create a Flux API key
Sign in to Flux, go to Settings, and create an API key with read and write scopes. This key authenticates Zapier's requests to the Flux REST API. Copy the key immediately as it is only shown once.
// Zapier + Flux
Connect Flux to Zapier via the REST API. Create cards from form submissions, CRM events, or any of Zapier's 7,000+ triggers. No native app needed - Webhooks by Zapier handles the HTTP calls.
Sign in to Flux, go to Settings, and create an API key with read and write scopes. This key authenticates Zapier's requests to the Flux REST API. Copy the key immediately as it is only shown once.
In Zapier, create a new Zap. Use Webhooks by Zapier as the trigger or choose any of Zapier's 7,000+ app triggers. For example, trigger on a new Google Form submission or a new row in a spreadsheet.
Add a Webhooks by Zapier action step configured as a POST request to the Flux API. Set the URL to your Flux instance's /api/cards endpoint, add the Authorization header with your Bearer token, and map trigger data to the card title and description fields.
Run a test to verify a card appears on your Flux board. Once confirmed, turn on the Zap. Every future trigger event will automatically create or update cards in Flux. No custom code required.
Flux does not have a native Zapier app. You connect Flux to Zapier using the Webhooks by Zapier action, which sends HTTP requests to the Flux REST API. This gives you full control over which API endpoints you call and what data you send.
You can call any Flux REST API endpoint from Zapier. Common actions include creating cards (POST /api/cards), updating card status, moving cards between columns, and reading board data (GET /api/boards). See the Flux API documentation at /api-docs for the full endpoint list.
Flux does not push webhook events to Zapier directly. For Flux-to-Zapier triggers, you would set up a polling Zap that periodically calls the Flux API to check for changes, or use a middleware service that listens to Flux SSE events and forwards them to a Zapier webhook URL.
// Automate everything
Flux REST API + Zapier webhooks. Automate your kanban workflow.