{"library":"n8n-nodes-hypris-api","title":"n8n Hypris API Node","description":"n8n-nodes-hypris-api v0.1.44 is a community node package for n8n that integrates with the Hypris enterprise workflow and database management platform. It provides nodes for authenticating and performing CRUD operations on workspaces, databases, items (records), properties (columns), and views. Notable features include auto-mapping of complex column types (link, relation, people, location, formula, date) and bulk creation of status/dropdown options. The package is actively maintained and depends on n8n-workflow. Current release cadence is irregular. Differentiators include specialized support for Hypris-specific data types, while alternatives like generic HTTP nodes require manual handling.","language":"javascript","status":"active","last_verified":"Sat Apr 25","install":{"commands":["npm install n8n-nodes-hypris-api"],"cli":null},"imports":["import { HyprisApi } from 'n8n-nodes-hypris-api'","import HyprisApi from 'n8n-nodes-hypris-api'","import type { HyprisApiOptions } from 'n8n-nodes-hypris-api'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import { HyprisApi } from 'n8n-nodes-hypris-api';\n\nconst credentials = {\n  hyprisApiToken: process.env.HYPRIS_API_TOKEN ?? 'YOUR_TOKEN'\n};\n\nconst api = new HyprisApi(credentials);\n\n// List all workspaces\nconst workspaces = await api.listWorkspaces();\nconsole.log(workspaces);\n\n// Create an item\nconst newItem = await api.createItem({\n  workspaceId: 'ws_xxx',\n  databaseId: 'db_xxx',\n  properties: {\n    name: 'Example',\n    status: 'active',\n    link: { url: 'https://example.com' }\n  }\n});\nconsole.log(newItem);","lang":"typescript","description":"Instantiates the Hypris API node, lists workspaces, and creates an item with complex properties.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}