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 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-twentycrm

v0.1.7

Published

n8n node for Twenty CRM integration

Readme

n8n-nodes-twentycrm

This is an n8n community node that provides full integration with Twenty CRM, an open-source CRM platform. It allows you to automate workflows and interact with Twenty CRM data directly from n8n.

Features

This node provides comprehensive access to the Twenty CRM API with 50+ operations across multiple resources:

Supported Resources

  • Person - Manage contacts and individuals
  • Company - Handle company records
  • Opportunity - Track sales opportunities
  • Task - Manage tasks and to-dos
  • Note - Create and manage notes
  • Calendar Event - Handle calendar events
  • Message - Manage messages
  • Attachment - Handle file attachments
  • Workflow - Manage automation workflows
  • Custom - Access any Twenty CRM resource via API

Available Operations

Each resource supports the following operations:

  • Create - Create new records
  • Get - Retrieve a single record by ID
  • Get Many - Retrieve multiple records with filtering and pagination
  • Update - Update existing records
  • Delete - Delete records

Additional Features

  • Full pagination support with cursor-based navigation
  • Advanced filtering with JSON queries
  • Custom field support
  • Bulk operations support
  • Automatic retry on failure
  • Rich text fields with Markdown support

Installation

Using n8n UI

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-twentycrm
  4. Click Install

Using CLI

npm install n8n-nodes-twentycrm

After installation, restart your n8n instance to load the new node.

Configuration

Credentials

To use this node, you need to configure Twenty CRM credentials:

  1. API URL: Your Twenty CRM instance URL (e.g., https://api.twenty.com)
  2. API Key: Your Twenty CRM API key

Getting API Credentials

  1. Log into your Twenty CRM instance
  2. Navigate to Settings > API & Webhooks
  3. Generate a new API key
  4. Copy the API key and your instance URL

Usage Examples

Create a Person

{
  "resource": "person",
  "operation": "create",
  "firstName": "John",
  "lastName": "Doe",
  "email": "[email protected]",
  "phone": "+1234567890",
  "jobTitle": "Manager",
  "city": "New York"
}

Get All Companies with Filtering

{
  "resource": "company",
  "operation": "getAll",
  "returnAll": false,
  "limit": 50,
  "additionalOptions": {
    "orderBy": "name",
    "orderDirection": "ASC",
    "filter": {
      "employees": {
        "gte": 10
      }
    }
  }
}

Update an Opportunity

{
  "resource": "opportunity",
  "operation": "update",
  "id": "opportunity-id-here",
  "stage": "NEGOTIATION",
  "probability": 75
}

Custom Resource Access

For resources not explicitly listed, use the "Custom" resource type:

{
  "resource": "custom",
  "operation": "create",
  "customResource": "blocklists",
  "fieldsJson": {
    "handle": "[email protected]",
    "workspaceMemberId": "member-id"
  }
}

Advanced Features

Pagination

The node automatically handles pagination when "Return All" is enabled. For manual pagination control, use the cursor fields in additional options.

Filtering

Use JSON-based filters to query specific records:

{
  "filter": {
    "createdAt": {
      "gte": "2024-01-01"
    },
    "status": "active"
  }
}

Error Handling

The node includes automatic error handling with retry logic. Enable "Continue On Fail" in the node settings to handle errors gracefully in your workflows.

Compatibility

  • n8n Version: 0.187.0 or later
  • Twenty CRM API: v0.20 or later
  • Node.js: 20.15 or later

Resources

Support

For issues, feature requests, or questions:

License

MIT

Changelog

v0.1.6

  • Simplified node structure for better UI compatibility
  • Added 10 core resources with full CRUD operations
  • Improved error handling and pagination
  • Added custom resource support for extended functionality

v0.1.0

  • Initial release with basic Twenty CRM integration