n8n-nodes-starter/README.md
2025-06-09 13:11:49 +05:30

1.8 KiB

Outgrow Trigger Node for n8n

n8n Community Node

Trigger node that fetches leads from Outgrow calculators at configurable intervals.

Outgrow Trigger Node Screenshot (Optional: Add screenshot later)

Features

  • 🕒 Polling API: Checks for new leads at customizable intervals (default: 5 minutes)
  • 📋 Calculator Selection: Dynamic dropdown of available calculators
  • 🔔 Smart Notifications: Clear "no leads" messages in the UI
  • ⚙️ Manual Trigger: Instant API calls for testing

Prerequisites

Installation

  1. Add the node to your n8n instance
  2. Configure Outgrow API credentials:
    • Navigate to Credentials > Add New > Outgrow API
    • Enter your API key

Node Configuration

Parameters

Field Required Description
Calculator Yes Select which Outgrow calculator to monitor
Polling Interval No Frequency (in minutes) to check for new leads (default: 5)

Usage Examples

Basic Automation

{
  "workflow": {
    "nodes": [
      {
        "parameters": {
          "calcId": "{{CALCULATOR_ID}}",
          "pollingInterval": 10
        },
        "name": "Outgrow Trigger",
        "type": "outgrowTrigger",
        "typeVersion": 1
      },
      {
        // Connect to other nodes (Email, Slack, etc.)
      }
    ]
  }
}