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

@matheusprm-nodes/n8n-nodes-rdstation-crm

v0.5.4

Published

n8n community node for RD Station CRM API v2

Downloads

72

Readme

n8n-nodes-rdstation-crm

This is an n8n community node that integrates with the RD Station CRM API v2. It allows you to interact with RD Station CRM resources (Deals, Contacts, Organizations, Products, Tasks, Webhooks, etc.) directly from your n8n workflows.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

npm install @matheusprm-nodes/n8n-nodes-rdstation-crm

After installation, restart n8n and look for the "RD Station CRM" node.

Features

  • OAuth2 Authentication - Secure authentication using RD Station's OAuth2 flow
  • 18 CRM Resources - Full support for Campaigns, Contacts, Deals, Organizations, Products, Tasks, Webhooks, and more
  • CRUD Operations - Create, Read, Update, Delete operations for all resources
  • Advanced Filtering - RDQL (RD Station Query Language) support for complex queries
  • Pagination - Built-in support for paginated results
  • Raw Request Mode - Advanced mode for custom API calls
  • Error Handling - Comprehensive error handling with detailed messages

Resources Supported

  • Campaigns
  • Contacts
  • Custom Fields
  • Deal Products
  • Deals
  • Attachments
  • Lost Reasons
  • Notes
  • Organizations
  • Pipelines
  • Products
  • Segments
  • Sources
  • Stages
  • Tasks
  • Teams
  • Users
  • Webhooks

Operations

For each resource, the following operations are available:

  • List - Retrieve a list of resources with pagination, filtering, and sorting
  • Get - Retrieve a single resource by ID
  • Create - Create a new resource
  • Update - Update an existing resource
  • Delete - Delete a resource (where applicable)

Credentials

RD Station CRM OAuth2 API

To use this node, you need to:

  1. Create an App in the RD Station App Publisher
  2. Get your credentials:
    • Client ID
    • Client Secret
  3. Configure the credential in n8n:
    • Go to Credentials → Add Credential → RD Station CRM OAuth2 API
    • Enter your Client ID and Client Secret
    • Complete the OAuth2 flow

OAuth2 Flow

The node uses the Authorization Code flow with refresh tokens:

  • Access tokens are valid for 2 hours
  • Refresh tokens expire if unused for 14 days (rolling tokens)
  • The node automatically handles token refresh

Usage Examples

List Deals

  1. Add the RD Station CRM node to your workflow
  2. Select Resource: Deal
  3. Select Operation: List
  4. Configure pagination:
    • Page: 1
    • Limit: 25
  5. (Optional) Add filters using RDQL:
    • Filter: status:(won,lost)

Create a Deal

  1. Add the RD Station CRM node
  2. Select Resource: Deal
  3. Select Operation: Create
  4. In Body (JSON), enter:
    {
      "name": "Nova negociação",
      "value": 1000
    }

Advanced: Raw Request

For custom endpoints or advanced use cases:

  1. Select Resource: Raw Request (Advanced)
  2. Select Method: GET, POST, PUT, PATCH, or DELETE
  3. Enter the Endpoint: /deals?page=1&limit=25
  4. (Optional) Add Query Parameters (JSON): {"page":1,"limit":25,"filter":"name:Teste"}
  5. (For POST/PUT/PATCH) Add Body (JSON)

Filtering with RDQL

The node supports RD Station's query language (RDQL) for advanced filtering:

Basic Syntax

status:won
name:Teste
value:>1000

Operators

  • = (equals)
  • != (not equals, prefix -)
  • >, <, >=, <= (comparison)
  • IN, NIN (in/not in)
  • MATCH (~) (pattern matching)

Examples

status:(won,lost)
name:~Teste
value:>1000 and value:<5000
@setor:tecnologia

Rate Limits

The RD Station CRM API has a rate limit of 120 requests per minute per token. The node will automatically handle rate limit errors.

Error Handling

The node provides detailed error messages for:

  • Authentication failures (401)
  • Rate limit exceeded (429)
  • Invalid requests (400, 422)
  • Resource not found (404)
  • Server errors (500)

Compatibility

  • Minimum n8n version: 1.0.0
  • RD Station API: v2

Resources

License

MIT

Support

For issues, questions, or contributions, please visit the GitHub repository.