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

v0.1.3

Published

SignifyCRM n8n nodes

Readme

n8n-nodes-signifycrm

This is an n8n community node. It lets you use SignifyCRM in your n8n workflows.

SignifyCRM is a powerful CRM platform serving APAC businesses since 2006, helping teams automate sales pipelines, manage marketing campaigns, and streamline customer support.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials Compatibility
Usage Resources Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

npm install n8n-nodes-signifycrm

Operations

The SignifyCRM node supports the following resources and operations:

Account

  • create: Create a new Account record
  • get: Retrieve an Account by ID
  • getAll: Retrieve multiple Accounts
  • update: Update an existing Account
  • delete: Soft-delete an Account

Contact

  • create: Create a new Contact record
  • get: Retrieve a Contact by ID
  • getAll: Retrieve multiple Contacts
  • update: Update an existing Contact
  • delete: Soft-delete a Contact

Lead

  • create: Create a new Lead record
  • get: Retrieve a Lead by ID
  • getAll: Retrieve multiple Leads
  • update: Update an existing Lead
  • delete: Soft-delete a Lead

Opportunity

  • create: Create a new Opportunity record
  • get: Retrieve an Opportunity by ID
  • getAll: Retrieve multiple Opportunities
  • update: Update an existing Opportunity
  • delete: Soft-delete an Opportunity

Case

  • create: Create a new Case record
  • get: Retrieve a Case by ID
  • getAll: Retrieve multiple Cases
  • update: Update an existing Case
  • delete: Soft-delete a Case

Task

  • create: Create a new Task record
  • get: Retrieve a Task by ID
  • getAll: Retrieve multiple Tasks
  • update: Update an existing Task
  • delete: Soft-delete a Task

Credentials

To connect your workflows to SignifyCRM, you must create a SignifyCRM API credential in n8n.

Prerequisites

  • An active SignifyCRM account (contact your administrator if you don’t have one).
  • Your SignifyCRM instance URL (e.g. https://example.signifycrm.com).
  • A valid API Key issued by your SignifyCRM administrator.
  • Your SignifyCRM Username and Password.

Authentication Method

This node uses SignifyCRM’s REST-API login endpoint (POST /rest_api/v1/rest/login) to authenticate on every request. Your API key is sent in the request body along with your login credentials.

How to set up in n8n

  1. In n8n, go to Settings → Credentials.
  2. Click New Credential and choose SignifyCRM API.
  3. Enter the following fields:
    • Site URL
      • The full base URL of your SignifyCRM instance (e.g. https://example.signifycrm.com).
    • API Key
      • Your SignifyCRM API key.
    • Username
      • Your SignifyCRM username.
    • Password
      • Your SignifyCRM login password.
  4. Click Save.
  5. n8n will automatically send a test request to /rest_api/v1/rest/login. If the test succeeds, your credential is ready to use.

For more details on SignifyCRM authentication, refer to the SignifyCRM API docs.

Compatibility

This node was developed and tested with latest stable n8n release and SignifyCRM API v1.

Usage

If you’re new to n8n, check out the Try it out guide first.

  1. Add the node
    On your workflow canvas click the “+” button and search for SignifyCRM.

  2. Select your credential
    In the node’s Credentials dropdown, pick the SignifyCRM API you created.

  3. Choose a resource & operation

    • Resource: e.g. Account, Contact, Lead, Opportunity, Case, or Task
    • Operation: e.g. create, get, getAll, update, delete
  4. Fill in the parameters

    • Required fields will be marked in red
    • You can expand Additional Fields to set any optional properties
  5. Connect to other nodes

    • Use an HTTP Request, Set, or Function node before/after to pass data in or handle results
  6. Execute the workflow

    • Click Execute Node (or run the whole workflow) to test
    • Inspect the output in the node’s Output panel

Resources

Version history

  • 1.0.0
    • Initial release
    • Resources: Account, Contact, Lead, Opportunity, Case, Task
    • Operations: create · get · getAll · update · delete
    • Built and tested against n8n latest and SignifyCRM API v1

License

This project is licensed under the MIT License.