@fibery/n8n-nodes-fibery
v0.1.26
Published
n8n node for Fibery
Downloads
843
Readme
n8n-nodes-fibery

This is an n8n community node. It lets you use Fibery in your n8n workflows.
Fibery is your company’s operating system It's a work platform that replaces scattered tools and connects teams. Chosen by nerds, appreciated by everyone (almost).
n8n is a fair-code licensed workflow automation platform.
Installation Operations Credentials Compatibility Usage Resources Version history
Installation
Follow the installation guide in the n8n community nodes documentation.
- Go to Settings > Community Nodes.
- Select Install.
- Enter
@fibery/n8n-nodes-fiberyin npm Package name. - Agree to the risks of using community nodes: select I understand the risks of installing unverified code from a public source.
- Select Install.
Operations
Database
- get many. List all databases in the workspace.
Entity
- create. Create a new entity.
- delete. Delete an entity.
- get. Get an entity.
- get many. Search and list entities from a database.
- update. Update an entity.
Triggers
- default. Handle Fibery events to Database from webhooks.
Credentials
At the moment this node supports only one authentication method: API Key.
Using API Key
- Enter the name of your Fibery workspace in the Workspace field. It can be obtained from the URL of your workspace. For example, if your workspace URL is
https://my-company.fibery.io, then the workspace name ismy-company. - Obtain an API key from your Fibery workspace. Please follow the Fibery API keys guide.
- Enter API key in the API Key field.
Compatibility
Tested on: 1.111.0
Usage
This example creates a Fibery entity from an n8n workflow: add credentials, pick a database, set fields, and run the node.
1. Configure credentials
- In n8n, open Credentials and create Fibery API Key API.
- Set Workspace to the subdomain of your Fibery URL. For
https://my-company.fibery.io, usemy-company. - Paste an API key from Fibery API keys.
- Save. n8n tests the key against
https://<workspace>.fibery.io/api/schema.
2. Create an entity
- Add a Fibery node to a workflow (for example after Manual Trigger).
- Select the Fibery credentials from the previous step.
- Set Resource to Entity and Operation to Create.
- Choose a Database from the list, or enter its name (for example
Product Management/Feature). - Under Fields, select Add Field and set values such as:
- Name:
Ship n8n integration - State:
Backlog
- Name:
- Optionally set Output to Simplified, Raw, or Selected Fields.
- Execute the node. The output item is the created entity, including its Fibery ID.
You can map values from earlier nodes with expressions, for example {{ $json.title }} for Name.
3. Query entities (Get Many)
To list matching records instead of creating one:
- Set Resource to Entity and Operation to Get Many.
- Choose the same Database.
- Set Limit (default
50). - Leave Filter as None, or choose Build Manually and add conditions (field, operator, value). Use Must Match to require all conditions (
AND) or any condition (OR). - Execute the node. Each matching entity is returned as a separate item.
4. React to Fibery changes (optional)
Use Fibery Trigger to start a workflow when entities in a database change. Select the same credentials and database. Only Fibery admins can create the webhook.
Resources
Version history
The Fibery node is currently at version 1. There are no previous node versions.
Package releases are listed in CHANGELOG.md. Current package version: 0.1.25.
