n8n community node for Fizzy - the kanban tool by 37signals
npm install n8n-nodes-fizzy


This is an n8n community node that lets you integrate Fizzy into your n8n workflows.
Fizzy is 37signals' simple, opinionated kanban tool that helps teams focus on what matters. With this node, you can automate your Fizzy boards, cards, comments, and more—connecting them to hundreds of other services in n8n.
n8n is a fair-code licensed workflow automation platform.
Follow the installation guide in the n8n community nodes documentation.
Quick install via npm:
``bash`
npm install n8n-nodes-fizzy
The main node for interacting with your Fizzy data. Supports full CRUD operations across all Fizzy resources.
| Resource | Operations |
|----------|------------|
| Board | Get, Get Many, Create, Update, Delete |
| Card | Get, Get Many, Create, Update, Delete, Close, Reopen, Move to Column, Move to Not Now, Send to Triage, Toggle Tag, Toggle Assignment, Watch, Unwatch |
| Column | Get, Get Many, Create, Update, Delete |
| Comment | Get, Get Many, Create, Update, Delete |
| Reaction | Get Many, Create, Delete |
| Step | Get, Create, Update, Delete |
| Tag | Get Many |
| User | Get, Get Many, Update, Deactivate |
| Notification | Get Many, Mark as Read, Mark as Unread, Mark All as Read |
A webhook-based trigger node that starts workflows when events happen in Fizzy.
| Event | Description |
|-------|-------------|
| Card Added | A new card is created |
| Card Assigned | Someone is assigned to a card |
| Card Board Changed | A card is moved to a different board |
| Card Column Changed | A card is moved to a column |
| Card Moved Back to "Maybe?" | A card is sent back to triage |
| Card Moved to "Done" | A card is closed |
| Card Moved to "Not Now" | A card is postponed |
| Card Moved to "Not Now" Due to Inactivity | A card is automatically postponed due to inactivity |
| Card Reopened | A card is reopened from Done |
| Card Unassigned | Someone is removed from a card |
| Comment Added | A comment is added to a card |
Webhook payloads can be verified using HMAC-SHA256 signature verification for security.
To connect n8n to Fizzy, you'll need:
1. API Token - Generate a personal access token from your Fizzy account settings
2. Base URL (optional) - Defaults to https://app.fizzy.do. Change this if you're using a self-hosted instance.
1. In n8n, go to Credentials → New Credential
2. Search for "Fizzy API"
3. Enter your API token
4. (Optional) Update the base URL if self-hosting
5. Click Test Connection to verify
- Minimum n8n version: 1.0.0
- Node.js: v20 or higher
- Tested with: n8n 1.70.0+
`bash`
git clone https://github.com/robzolkos/n8n-nodes-fizzy.git
cd n8n-nodes-fizzy
npm install
| Command | Description |
|---------|-------------|
| npm run build | Compile TypeScript to JavaScript |npm run lint
| | Validate node structure against n8n requirements |npm run lintfix
| | Auto-fix linting issues |npm run test
| | Run unit tests |npm run test:watch
| | Run tests in watch mode |npm run dev
| | Start n8n with hot-reload for development |
Run n8n in Docker with your local node mounted:
`bashBuild the node first
npm run build
- Fizzy - Official Fizzy website
- n8n Community Nodes Documentation
- n8n Community Forum
---
Fizzy is a trademark of 37signals, LLC. The Fizzy logo is used with permission.