npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@joshuanode/n8n-nodes-formnode

v1.0.2

Published

n8n node for FormNode API integration

Readme

n8n-nodes-formnode

npm version License: MIT n8n TypeScript

This is an n8n community node for integrating with the FormNode API.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

This node supports the following resources and operations:

Organization

  • Create - Create a new organization with optional integration mappings
  • Delete - Delete an organization (cascades to forms and submissions)
  • Get - Retrieve a single organization by ID
  • Get Many - List all organizations in your workspace
  • Update - Update organization name, slug, or integration mappings
  • Bulk Upsert - Create or update multiple organizations at once
  • Resolve by Mapping - Find an organization by integration mapping key-value pair

Form

  • Create - Create a new form in an organization
  • Delete - Delete a form (cascades to submissions)
  • Get - Retrieve a single form by ID
  • Get Many - List all forms in an organization
  • Update - Update form name, content, published status, or auth requirements

Submission

  • Delete - Delete a submission (GDPR compliance)
  • Get - Retrieve a single submission with decrypted data
  • Get Many - List all submissions for a form

Credentials

To use this node, you need to configure FormNode API credentials:

  1. Log into your FormNode workspace
  2. Go to Workspace Settings > API Keys
  3. Click Create API Key
  4. Select the appropriate scope
  5. Copy the generated API key

In n8n:

  1. Go to Credentials > Add Credential
  2. Select FormNode API
  3. Enter your API Key
  4. Enter the Base URL (default: https://app.formnode.io, omit /api/v1)

API Authentication

All requests use API key authentication via the Authorization header:

Authorization: Bearer fn_sk_...

API Scopes

  • READ_ONLY - Read-only access to data (list, get operations)
  • SYNC - Create, update, and delete forms and organizations
  • FULL - All operations (including headless submissions)

Features

  • Integration mappings - Link FormNode organizations to your external systems with key-value pairs
  • Bulk operations - Create or update multiple organizations at once with merge or replace modes
  • GDPR compliance - Delete submissions after processing to comply with data retention policies
  • Expression support - All fields support n8n expressions for dynamic values
  • Pagination support - Automatically handles pagination for list operations

Common Use Cases

Multi-Tenant SaaS Integration

Use integration mappings to link FormNode organizations to your tenants:

  1. Create Organization with integration mapping:

    • Key: tenantId
    • Value: Your internal tenant ID
  2. Resolve by Mapping to find the organization:

    • Mapping Key: tenantId
    • Mapping Value: Your tenant ID
  3. Create Form in the resolved organization

Form Submission Automation

  1. Get Many Submissions for a form
  2. Process each submission in your n8n workflow
  3. Delete Submission after processing (optional, for GDPR compliance)

Bulk Organization Setup

Use Bulk Upsert to create multiple organizations from a data source:

  • Mode merge: Add new organizations, keep existing ones
  • Mode replace: Replace all organizations with the provided list

Compatibility

  • n8n version: 1.0+
  • Node.js version: 18.17.0+

Resources

License

MIT