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

@ixiam/n8n-nodes-civicrm

v1.1.40

Published

Full-featured CiviCRM API v4 integration for n8n with support for Contacts, Memberships, Groups, Relationships, Activities and structured sub-entities like Email, Phone, and Address.

Downloads

548

Readme

n8n-nodes-civicrm

n8n Community Node CiviCRM API v4 TypeScript

Community Node for CiviCRM API v4 (Civi-Go compatible)
Developed and maintained by Ixiam Global Solutions.

This node enables full integration between n8n and CiviCRM API v4, supporting create/update/delete operations, smart field mapping, dynamic location types, and advanced filtering on GET operations.


About CiviCRM

CiviCRM is an open-source Constituent Relationship Management platform designed for nonprofits, NGOs, and advocacy organizations. It supports contact management, memberships, contributions, event registration, email marketing, case management, and reporting. CiviCRM integrates with WordPress, Drupal, and Joomla.

Download: https://civicrm.org/download


🚀 Installation

  1. In your n8n instance, go to:
    Settings → Community Nodes → Install
  2. Enter the package name:
@ixiam/n8n-nodes-civicrm
  1. Approve installation and enable Community Nodes.
  2. If running n8n via Docker, restart/rebuild for the node to load.

🔐 Credentials

The node uses Bearer Token Authentication.

| Field | Description | |-------|-------------| | Base URL | The root URL of your CiviCRM instance (without trailing slash). Example: https://crm.example.org | | API Token | Sent as header X-Civi-Auth: Bearer <token> |

After entering credentials, click Save to validate the connection.


📦 Supported Entities

The node includes full API v4 support for the following entities:

| Entity | Operations | |--------|------------| | Contact | get, getMany, create, update, delete | | Membership | get, getMany, create, update, delete | | Group | get, getMany, create, update, delete | | Relationship | get, getMany, create, update, delete | | Activity | get, getMany, create, update, delete | | Custom API Call | full custom API4 request |


🧩 Key Features

1. Dynamic Field Mapping

Supports any standard or custom field:

first_name = John
last_name = Doe
custom_45 = Blue

2. Smart Email, Phone & Address Mapping

Two ways to set location-aware fields:

(A) Simple fields

email = [email protected]
phone.mobile = 600123456
address.city = Barcelona

(B) Dynamic prefixes matched to CiviCRM Location Types

work.email = [email protected]
billing.address.postal_code = 80331
home.phone.phone_type_id = 2

3. Default Location Type selectors

If no prefix is used, default types are applied.

4. Birth Date Normalization

Accepted input formats:

  • YYYY-MM-DD
  • DD/MM/YYYY
  • DD-MM-YYYY
  • YYYY/MM/DD
  • YYYY.MM.DD

Auto-normalized to YYYY-MM-DD.

5. GET MANY with JSON Filters

Example:

[
  ["first_name", "LIKE", "Ju%"],
  ["birth_date", ">", "1990-01-01"],
  ["gender_id", "IN", [1, 2]]
]

6. Custom API Call Mode

Example:

{
  "entity": "Contact",
  "action": "get",
  "params": { "limit": 10 }
}

Compatibility

  • n8n version: 1.0.0 or higher
  • Node.js: 18 or higher
  • CiviCRM: API v4 compatible (including Civi-Go)

Development

Clone the repository and run:

npm install
npm run dev

Build:

npm run build

Contributions

Pull requests and issues are welcome in the GitHub repository.


🧑‍💻 About Ixiam Global Solutions

Website: https://www.ixiam.com
Contact: [email protected]


📄 License

MIT License