@stackbyhq/n8n-nodes-stackby
v1.1.0
Published
n8n community nodes for Stackby — create, update, delete and list records; trigger on new/updated/deleted rows.
Maintainers
Readme
n8n-nodes-stackby
Official n8n community node for Stackby — the no-code database platform.
Nodes
Stackby (Action)
Perform CRUD operations on Stackby records:
| Operation | Description | |---|---| | Record: Get Many | List records from a table (with limit/offset) | | Record: Get | Retrieve a single record by row ID | | Record: Create | Create a new record | | Record: Update | Update an existing record | | Record: Delete | Delete one or more records | | Table: Get Many | List all tables in a stack |
Stackby Trigger
Triggers your workflow when Stackby data changes:
| Event | Description |
|---|---|
| row.created | A new row was added to the table |
| row.updated | An existing row was modified |
| row.deleted | A row was deleted |
Setup
1 — Install
In your n8n instance (self-hosted):
npm install n8n-nodes-stackbyOr via the Community Nodes panel in n8n Cloud / desktop:
- Open Settings → Community Nodes
- Search for
n8n-nodes-stackby - Click Install
2 — Credentials
- Go to Credentials → New → Stackby API
- Enter your API Key (Stackby dashboard → Account → API Tokens)
- Leave Base URL as
https://api.stackby.comunless self-hosted
3 — Finding Stack ID and Table ID
The stack URL on Stackby looks like:
https://stackby.com/stack/<STACK_ID>/<TABLE_ID>Both IDs are in the URL.
Examples
Trigger: New Row Created
[Stackby Trigger] → [Send Email / Slack / etc]
Stack ID: stXXXXXXXX
Table ID: tbXXXXXXXX
Events: Row CreatedAction: Create Record
[Some trigger] → [Stackby: Create Record]
Stack ID: stXXXXXXXX
Table ID: tbXXXXXXXX
Fields:
Name → {{ $json.name }}
Email → {{ $json.email }}Publishing to npm
npm login
npm publishLicense
MIT
