gravity-forms-v2-api

Gravity Forms REST API v2 integration for n8n workflows, AI tools, and triggers.

Package Information

Released: 9/23/2025
Downloads: 0 weekly / 0 monthly
Latest Version: 0.2.2
Author: jezweb

Documentation

n8n-nodes-gravity-forms-v2-api

Gravity Forms REST API v2 community node for n8n. This package exposes Gravity Forms operations to workflows, AI agents (tool mode), and a polling trigger for new entries.

Features

  • Forms: list, fetch, and create forms via the REST API.
  • Entries: list, retrieve, create, and delete submissions, including pagination helpers.
  • Tool actions: condensed operations optimised for n8n AI agents (summaries, quick submissions, entry search).
  • Trigger: poll for new Gravity Forms submissions with stateful checkpointing.

Prerequisites

  • Gravity Forms REST API enabled with a Consumer Key & Secret.
  • Base URL pointing to your WordPress site (e.g. https://example.com/wp-json/gf/v2).
  • n8n 1.2+ recommended.

Installation

Inside your n8n community nodes projects folder:

npm install n8n-nodes-gravity-forms-v2-api

Or clone this repository and run:

npm install
npm run build

Then copy the resulting package to your n8n environment and add it under Settings → Community Nodes.

Usage

  1. Create a new credential of type Gravity Forms API providing your base URL, consumer key, and consumer secret.
  2. Add the Gravity Forms workflow node to access form or entry resources. Choose the resource and operation, then set any additional filters or payload JSON.
  3. To expose functionality to AI agents, switch the resource to Tool Action and pick one of the prebuilt operations tailored for conversational tools.
  4. Use Gravity Forms Trigger to start workflows on new submissions. Configure the form ID (optional) and polling interval.

Development

npm install
npm run build

TODO

  • Additional resources (feeds, notifications, results API).
  • Richer AI tool metadata once n8n exposes formal tooling schemas.
  • Unit tests with mocked Gravity Forms responses.

Discussion