@iamprompt/n8n-nodes-grist
v0.1.7
Published
n8n community node for Grist — create, read, update, upsert, and delete records in your Grist spreadsheet-database.
Maintainers
Readme
@iamprompt/n8n-nodes-grist
This is an n8n community node that lets you use Grist in your n8n workflows.
Grist is an open-source, spreadsheet-database hybrid that gives you the flexibility of a spreadsheet with the power of a relational database. This node lets you create, read, update, upsert, and delete records in any Grist document — including self-hosted instances.
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Credentials
Compatibility
Resources
Version history
Installation
Follow the installation guide in the n8n community nodes documentation.
In n8n, go to Settings → Community Nodes → Install and enter:
@iamprompt/n8n-nodes-gristOperations
Resource: Record
| Operation | Description |
|-----------|-------------|
| Get Many | Fetch records from a table, with optional filters, sorting, and a result limit |
| Create | Add new records to a table |
| Update | Modify existing records by row ID |
| Upsert | Add or update records by matching on one or more columns (where + fields) |
| Delete | Remove records by row ID |
Credentials
This node uses the Grist API (Enhanced) credential, which requires:
| Field | Description |
|-------|-------------|
| URL | Full URL of your Grist instance, e.g. https://docs.getgrist.com or http://localhost:8484 — no trailing slash, no /api suffix |
| API Key | Your personal Grist API key — find it under Profile Settings → API in Grist |
Getting your API key
- Log in to your Grist instance.
- Click your avatar (top-right) → Profile Settings.
- Scroll to the API section and copy your key.
The credential is tested automatically against GET /api/orgs.
Compatibility
- Tested with n8n ≥ 1.x
- Works with both Grist Cloud (
docs.getgrist.com) and self-hosted Grist instances - Requires Grist API version that supports
/docs/{docId}/tables/{tableId}/records
Usage
Selecting a document
Each operation requires you to select an Organization → Workspace → Document → Table using dynamic dropdowns. These are resolved from your Grist instance via the API.
Get Many — Filtering
The filter option accepts a Grist filter object as a JSON string, for example:
{"Status": ["Active", "Pending"]}The sort option accepts a comma-separated list of column IDs, optionally prefixed with - for descending order:
-CreatedAt,NameUpsert — Record format
The Upsert operation accepts a JSON array where each entry has:
[
{
"where": { "Email": "[email protected]" },
"fields": { "Name": "Alice", "Status": "Active" }
}
]where— columns used to match existing rowsfields— values to set (on match or new insert)
Delete — Row IDs
Provide a comma-separated list of numeric row IDs to delete, e.g. 1,2,3.
Resources
Version history
0.1.0
Initial release with full Record resource support:
- Get Many (with filter, sort, limit)
- Create
- Update
- Upsert (with
onmany,noadd,noupdateoptions) - Delete
Supports self-hosted and Grist Cloud instances via dynamic org/workspace/document/table selection.
