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

n8n-nodes-setforth

v1.0.0

Published

A comprehensive n8n community node for the Setforth (FORTH) API providing 38 resources and 150+ operations for debt resolution CRM, payment processing, e-signatures, and credit reporting.

Downloads

101

Readme

n8n-nodes-setforth

[Velocity BPA Licensing Notice]

This n8n node is licensed under the Business Source License 1.1 (BSL 1.1).

Use of this node by for-profit organizations in production environments requires a commercial license from Velocity BPA.

For licensing information, visit https://velobpa.com/licensing or contact [email protected].

A comprehensive n8n community node for the Setforth (FORTH®) API - a debt resolution technology platform providing CRM, payment processing, e-signature, and credit reporting services for Debt Relief Service Providers (DRSPs).

License n8n Version

FORTH® API Notice: FORTH® is a registered trademark of SetForth, Inc. This n8n community node is developed independently by Velocity BPA, LLC and is not affiliated with, endorsed by, or sponsored by SetForth, Inc. Use of the Setforth API requires a separate API access agreement with SetForth, Inc.


Features

  • 38 Resources with 150+ Operations
  • OAuth2 authentication with environment switching (Production/Sandbox)
  • Webhook triggers for 12 real-time event types
  • Comprehensive error handling with user-friendly messages
  • Pagination support for large datasets
  • Binary file handling for document operations

Installation

Community Nodes (Recommended)

  1. Open SettingsCommunity Nodes
  2. Click Install
  3. Enter: n8n-nodes-setforth
  4. Click Install

Manual Installation

# Navigate to your n8n installation
cd ~/.n8n

# Install the package
npm install n8n-nodes-setforth

Development Installation

# 1. Extract the zip file
unzip n8n-nodes-setforth.zip
cd n8n-nodes-setforth

# 2. Install dependencies
npm install

# 3. Build the project
npm run build

# 4. Create symlink to n8n custom nodes directory
mkdir -p ~/.n8n/custom
ln -s $(pwd) ~/.n8n/custom/n8n-nodes-setforth

# 5. Restart n8n
n8n start

Credentials Setup

| Field | Description | |-------|-------------| | Environment | Select Production or Sandbox | | Client ID | Your Setforth API Client ID | | Client Secret | Your Setforth API Client Secret | | Scope | OAuth2 scopes (default: read write) |


Resources & Operations

CRM Resources

| Resource | Operations | |----------|------------| | Contact | Create, Get, Get Many, Update, Delete, Search, Get History Feed | | Contact Alert | Get, Get Many | | Contact Note | Get, Get Many | | Contact Communication | Get, Get Many | | Contact Document | Get, Get Many | | Contact List | Get, Get Many | | Contact Workflow | Get, Get Many | | Contact Banking | Get, Get Many |

Debt Resources

| Resource | Operations | |----------|------------| | Debt | Create, Get, Update, Delete, Get Documents, Update Type | | Debt Task | Get, Get Many | | Debt Note | Get, Get Many | | Contact Debt | Get, Get Many | | Contact Credit Report | Get, Get Many |

Servicing Resources

| Resource | Operations | |----------|------------| | Enrollment | Get, Get Many | | Settlement Offer | Get, Get Many | | Transaction | Get, Get Many | | Account Statement | Get, Get Many | | Creditor | Get, Get Many |

Document Resources

| Resource | Operations | |----------|------------| | Document | Get, Get Many | | Document Package | Get, Get Many | | Document Type | Get, Get Many | | Document Template | Get, Get Many | | Document Package Template | Get, Get Many |

E-Signature & Credit

| Resource | Operations | |----------|------------| | Clixsign | Get, Get Many | | Forth Credit | Get, Get Many |

Administration

| Resource | Operations | |----------|------------| | Admin User | Get, Get Many | | Team | Get, Get Many | | User | Get, Get Many | | Payee | Get, Get Many | | Content Configuration | Get, Get Many |

Marketing

| Resource | Operations | |----------|------------| | Campaign | Get, Get Many | | Email Template | Get, Get Many |

Other Resources

| Resource | Operations | |----------|------------| | Call | Get, Get Many | | Task | Get, Get Many | | Calendar Event | Get, Get Many | | Lender | Get, Get Many | | Utility | Get, Get Many | | Bulk Operations | Get, Get Many |


Trigger Node

The Setforth Trigger node supports the following events:

| Event | Description | |-------|-------------| | contact.created | New contact created | | contact.updated | Contact updated | | debt.created | New debt created | | debt.status_changed | Debt status changed | | clixsign.document_signed | Document signed via Clixsign | | enrollment.submitted | Enrollment submitted | | enrollment.approved | Enrollment approved | | payment.received | Payment received | | settlement.created | Settlement offer created | | settlement.status_changed | Settlement offer status changed | | task.completed | Task completed | | workflow.status_changed | Workflow status changed |


Usage Examples

Create a Contact

{
  "resource": "contact",
  "operation": "create",
  "firstName": "John",
  "lastName": "Doe",
  "email": "[email protected]",
  "phone": "+15551234567"
}

Create a Debt

{
  "resource": "debt",
  "operation": "create",
  "contactId": "{{$json.id}}",
  "creditorName": "Capital One",
  "originalBalance": 5000.00,
  "currentBalance": 4500.00
}

Error Handling

The node provides user-friendly error messages for common API errors:

| Code | Description | |------|-------------| | 400 | Bad Request - Invalid request | | 401 | Unauthorized - Invalid credentials | | 403 | Forbidden - Insufficient permissions | | 404 | Not Found - Resource not found | | 429 | Too Many Requests - Rate limit exceeded | | 500 | Internal Server Error |


Development

# Install dependencies
npm install

# Build the project
npm run build

# Run linting
npm run lint

# Fix linting issues
npm run lint:fix

# Run tests
npm test

# Run tests with coverage
npm run test:coverage

# Watch mode for development
npm run dev

Author

Velocity BPA


Licensing

This n8n community node is licensed under the Business Source License 1.1.

Free Use

Permitted for personal, educational, research, and internal business use.

Commercial Use

Use of this node within any SaaS, PaaS, hosted platform, managed service, or paid automation offering requires a commercial license.

For licensing inquiries: [email protected]

See LICENSE, COMMERCIAL_LICENSE.md, and LICENSING_FAQ.md for details.


Support


Acknowledgments

  • n8n - Workflow automation platform
  • Setforth - Debt resolution technology platform

Trademark Notice

  • FORTH® is a registered trademark of SetForth, Inc.
  • n8n® is a registered trademark of n8n GmbH.
  • Velocity BPA™ is a trademark of Velocity BPA, LLC.

This node is not affiliated with, endorsed by, or sponsored by SetForth, Inc. or n8n GmbH.