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-n8ntools-yupchat

v1.1.1

Published

N8N Tools - Yup.chat: Send messages and manage communications through Yup.chat multi-channel platform

Readme

N8N Tools - Yup.chat

npm version npm downloads License: MIT

Send messages and manage communications through Yup.chat multi-channel platform. This N8N community node provides integration with WhatsApp, SMS, RCS, and Omni messaging channels.

✨ Features

  • 📱 Multi-Channel Support: WhatsApp, SMS, RCS, and Omni channels
  • 📤 Message Sending: Send messages through all supported channels
  • 📥 Data Retrieval: Get contacts, rooms, and message information
  • 📋 Template Management: Create and manage WhatsApp templates
  • 🔒 Secure Authentication: Basic HTTP authentication with Yup.chat API
  • 💰 Cost Tracking: Usage monitoring and budget controls

🚀 Quick Start

Installation

Install this node in your N8N instance:

Via Community Nodes (Recommended)

  1. Go to Settings > Community Nodes in your N8N interface
  2. Click Install a community node
  3. Enter n8n-nodes-n8ntools-yupchat
  4. Click Install

Via npm

npm install n8n-nodes-n8ntools-yupchat

Setup Credentials

  1. Sign up at Yup.chat and get your API credentials
  2. In N8N, create new Yup.chat API credentials
  3. Enter your Base URL: https://api.yup.chat
  4. Enter your API key

📋 Available Resources

SMS Messages

  • Send: Send text or template-based SMS messages
  • Get Many: Retrieve SMS message history with filters

WhatsApp Messages

  • Send: Send text or template WhatsApp messages
  • Get Many: Retrieve WhatsApp conversation history

RCS Messages

  • Send: Send rich RCS messages (text, media, cards, carousels)

Templates

  • Create WhatsApp Template: Create new WhatsApp message templates
  • List WhatsApp Templates: Retrieve existing templates
  • Delete WhatsApp Template: Remove templates

Rooms

  • List Omni Rooms: Retrieve Omni channel rooms
  • List Room Messages: Get messages from specific rooms

Contacts

  • List Contacts: Retrieve contact information

💡 Usage Examples

Send SMS Message

// Configuration
Resource: "SMS"
Operation: "Send"
To: "5511999999999"
Message Type: "text"
Message Text: "Hello from N8N!"

// Output
{
  "success": true,
  "resource": "sms",
  "operation": "send",
  "messageId": "sms_123456789",
  "status": "queued",
  "creditsUsed": 1
}

Send WhatsApp Template

// Configuration
Resource: "WhatsApp"
Operation: "Send"
To: "5511999999999"
Message Type: "template"
Template ID: "welcome_template"
Template Parameters: ["John Doe"]

// Output
{
  "success": true,
  "resource": "whatsapp",
  "operation": "send",
  "messageId": "wa_123456789",
  "status": "queued",
  "creditsUsed": 1
}

Create WhatsApp Template

// Configuration
Resource: "Templates"
Operation: "Create"
Template Name: "welcome_template"
Template Body: "Hello {{1}}, welcome to our service!"
Template Type: "TRANSACTIONAL"
Template Parameters: ["name"]

// Output
{
  "success": true,
  "resource": "templates",
  "operation": "create",
  "templateId": "tmpl_123456789",
  "status": "created",
  "creditsUsed": 1
}

⚙️ Configuration Options

Authentication

  • API URL: Your N8N Tools API URL (default: https://api.n8ntools.io)
  • API Key: Your N8N Tools API key

Message Parameters

  • To: Recipient phone number in E.164 format (5511999999999)
  • From: Sender identifier (optional, depends on channel)
  • Message Type: text, template, media (depends on channel)
  • Message Content: Text content or template parameters

Template Parameters

  • Template Name: Unique identifier for the template
  • Template Body: Template content with placeholders
  • Template Type: TRANSACTIONAL or MARKETING
  • Template Parameters: Array of parameter names

🛠️ Example Workflows

Customer Onboarding

[New User Signup] → [YupChat: Create WhatsApp Template] → [YupChat: Send Welcome Message] → [Track Engagement]

Order Notification

[Order Completed] → [YupChat: Send SMS Notification] → [Update Order Status]

Support Ticket Response

[Support Ticket Created] → [YupChat: Send WhatsApp Template] → [Agent Assignment]

🚨 Error Handling

The node provides comprehensive error handling with detailed messages:

{
  "error": "Invalid phone number format",
  "success": false,
  "resource": "sms",
  "operation": "send",
  "details": {
    "issue": "Phone number must be in E.164 format",
    "field": "to",
    "value": "invalid_number"
  }
}

💸 Pricing & Limits

  • SMS Messages: 1 credit per message
  • WhatsApp Messages: 1 credit per message
  • RCS Messages: 2 credits per message
  • Templates: 1 credit per template
  • API Rate Limits: Based on your N8N Tools subscription plan

📈 Performance Tips

  1. Batch Operations: Send multiple messages in sequence for bulk operations
  2. Template Reuse: Create templates once and reuse for multiple sends
  3. Error Handling: Implement retry logic for transient failures
  4. Rate Limiting: Respect API rate limits to avoid blocking

🆘 Support

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.


Made with ❤️ by N8N Tools