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-freshdesk

v1.0.0

Published

A comprehensive n8n community node for Freshdesk helpdesk platform providing 10 resources and 60+ operations for ticket management, customer support, and knowledge base automation.

Readme

n8n-nodes-freshdesk

[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 Freshdesk providing 10 resources and 60+ operations for ticket management, customer support, and knowledge base automation.

n8n Version License

Features

  • Complete Ticket Management - Create, update, search, filter, merge, and manage tickets with full conversation support
  • Contact & Company Management - Full CRUD operations with merge, search, and filter capabilities
  • Agent & Group Administration - Manage support agents, roles, and team groups
  • Knowledge Base (Solutions) - Create and manage categories, folders, articles, and translations
  • Canned Responses - Manage response templates for faster replies
  • Time Tracking - Log and manage time entries with timer functionality
  • Product Management - Organize tickets by product or service
  • Webhook Triggers - Automate workflows based on Freshdesk events
  • Rate Limit Handling - Automatic retry logic with Retry-After header support
  • Pagination Support - Efficiently retrieve large datasets

Installation

Community Nodes (Recommended)

  1. Open n8n
  2. Go to Settings > Community Nodes
  3. Click Install
  4. Enter n8n-nodes-freshdesk and click Install

Manual Installation

# Navigate to your n8n installation directory
cd ~/.n8n

# Install the node package
npm install n8n-nodes-freshdesk

Development Installation

# 1. Extract/clone the repository
cd n8n-nodes-freshdesk

# 2. Install dependencies
npm install

# 3. Build the project
npm run build

# 4. Create symlink to n8n custom nodes directory
# For Linux/macOS:
mkdir -p ~/.n8n/custom
ln -s $(pwd) ~/.n8n/custom/n8n-nodes-freshdesk

# For Windows (run as Administrator):
# mklink /D %USERPROFILE%\.n8n\custom\n8n-nodes-freshdesk %CD%

# 5. Restart n8n
n8n start

Credentials Setup

| Property | Type | Required | Description | |----------|------|----------|-------------| | Domain | String | Yes | Your Freshdesk subdomain (e.g., yourcompany from yourcompany.freshdesk.com) | | API Key | String | Yes | Your Freshdesk API key (found in Profile Settings) |

Getting Your API Key

  1. Log in to your Freshdesk account
  2. Click your profile picture in the top right
  3. Go to Profile Settings
  4. Your API Key is displayed on the right sidebar

Resources & Operations

Tickets

| Operation | Description | |-----------|-------------| | Create | Create a new ticket | | Get | Get a ticket by ID | | Get Many | List all tickets with optional filters | | Update | Update ticket properties | | Delete | Delete a ticket | | Restore | Restore a deleted ticket | | Search | Search tickets using query | | Filter | Filter tickets using saved filters | | Reply | Add a reply to a ticket | | Add Note | Add a private note | | Get Conversations | List all conversations | | Add Watcher | Add a watcher to a ticket | | Merge | Merge multiple tickets |

Contacts

| Operation | Description | |-----------|-------------| | Create | Create a new contact | | Get | Get a contact by ID | | Get Many | List all contacts | | Update | Update contact properties | | Delete | Delete a contact | | Restore | Restore a deleted contact | | Merge | Merge multiple contacts | | Make Agent | Convert contact to agent | | Search | Search contacts | | Filter | Filter contacts |

Companies

| Operation | Description | |-----------|-------------| | Create | Create a new company | | Get | Get a company by ID | | Get Many | List all companies | | Update | Update company properties | | Delete | Delete a company | | Search | Search companies | | Filter | Filter companies |

Agents

| Operation | Description | |-----------|-------------| | Create | Create a new agent | | Get | Get an agent by ID | | Get Many | List all agents | | Update | Update agent properties | | Delete | Deactivate an agent | | Filter | Filter agents |

Groups

| Operation | Description | |-----------|-------------| | Create | Create a new group | | Get | Get a group by ID | | Get Many | List all groups | | Update | Update group properties | | Delete | Delete a group |

Conversations

| Operation | Description | |-----------|-------------| | Create | Create a reply or note | | Get Many | List ticket conversations | | Update | Update a note | | Delete | Delete a conversation |

Canned Responses

| Operation | Description | |-----------|-------------| | Create | Create a canned response | | Get | Get a canned response | | Get Many | List canned responses | | Update | Update a canned response | | Delete | Delete a canned response | | Get Folders | List response folders |

Solutions (Knowledge Base)

| Operation | Description | |-----------|-------------| | Create Category | Create a new category | | Create Folder | Create a new folder | | Create Article | Create a new article | | Get Article | Get an article by ID | | Get Many Articles | List articles in a folder | | Update Article | Update an article | | Delete Article | Delete an article | | Translate Article | Add article translation |

Time Entries

| Operation | Description | |-----------|-------------| | Create | Create a time entry | | Get | Get a time entry | | Get Many | List time entries | | Update | Update a time entry | | Delete | Delete a time entry | | Toggle Timer | Start/stop timer |

Products

| Operation | Description | |-----------|-------------| | Create | Create a new product | | Get | Get a product by ID | | Get Many | List all products | | Update | Update a product | | Delete | Delete a product |

Trigger Node

The Freshdesk Trigger node allows you to start workflows based on Freshdesk events.

Supported Events

  • Ticket Created
  • Ticket Updated
  • Ticket Deleted
  • Note Added
  • Reply Received
  • Agent Assigned
  • Status Changed
  • Priority Changed
  • All Events

Webhook Setup

  1. Copy the webhook URL from n8n
  2. In Freshdesk, go to Admin > Automations > Automation Rules
  3. Create a new rule with your trigger conditions
  4. Add action: Trigger Webhook
  5. Paste the webhook URL
  6. Select POST method and JSON content type
  7. Configure the payload with ticket/conversation data

Usage Examples

Create a Ticket

// Node: Freshdesk
// Operation: Create Ticket

{
  "subject": "Issue with login",
  "description": "User cannot access their account",
  "email": "[email protected]",
  "priority": 3,  // High
  "status": 2     // Open
}

Search Tickets

// Node: Freshdesk
// Operation: Search

{
  "query": "status:2 AND priority:3"
}

Add Reply to Ticket

// Node: Freshdesk
// Operation: Reply

{
  "ticketId": 12345,
  "body": "<p>Thank you for contacting us. We're looking into this.</p>"
}

Error Handling

The node includes built-in error handling for:

  • Rate Limiting (429) - Automatically extracts Retry-After header
  • Authentication Errors - Clear messaging for credential issues
  • API Errors - Detailed error messages from Freshdesk API

Security Best Practices

  1. Store API keys securely - Use n8n's credentials system
  2. Use environment variables - For domain configuration
  3. Limit API key permissions - Use keys with minimum required scope
  4. Monitor API usage - Track rate limits and usage patterns

Development

# Install dependencies
npm install

# Build the project
npm run build

# Run tests
npm test

# Run tests with coverage
npm run test:coverage

# Lint code
npm run lint

# Fix linting issues
npm run lint:fix

# 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.

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Run tests: npm test
  5. Submit a pull request

Support

Acknowledgments

  • Freshdesk for their comprehensive API
  • n8n for the workflow automation platform
  • The n8n community for their contributions and feedback