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

v1.0.3

Published

n8n community node for SendSeven - Unified Messaging API Platform

Downloads

73

Readme

n8n-nodes-sendseven

This is an n8n community node for SendSeven - a unified messaging API platform enabling multi-channel messaging through WhatsApp, Telegram, SMS, Email, Messenger, Instagram, and more.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

npm Installation

npm install n8n-nodes-sendseven

Manual Installation

  1. Clone this repository
  2. Run npm install
  3. Run npm run build
  4. Copy the dist folder to your n8n custom nodes directory

Operations

SendSeven Node (Actions)

Message

  • Send: Send a message through any channel (WhatsApp, Telegram, SMS, Email, etc.)

Contact

  • Create: Create a new contact
  • Update: Update an existing contact
  • Get: Get a contact by ID
  • Search: Search contacts by name, email, or phone
  • Add Tag: Add a tag to a contact

Conversation

  • Get: Get a conversation by ID
  • Search: Search conversations by contact, status, or channel type
  • Close: Close a conversation
  • Assign: Assign a conversation to a team member

WhatsApp Template

  • Send: Send a pre-approved WhatsApp template message
  • List: List available WhatsApp templates

SendSeven Trigger Node (Webhooks)

Listen for real-time events:

  • Message Received: Triggers when a new inbound message is received
  • Message Sent: Triggers when an outbound message is delivered
  • Message Status Updated: Triggers when message status changes
  • Conversation Created: Triggers when a new conversation starts
  • Conversation Closed: Triggers when a conversation is closed
  • Contact Created: Triggers when a new contact is created
  • Contact Updated: Triggers when a contact is updated
  • Ticket Created: Triggers when a support ticket is created
  • Ticket Closed: Triggers when a ticket is resolved
  • Campaign Sent: Triggers when a campaign completes sending

Authentication

This node supports two authentication methods:

API Key (Recommended for most users)

  1. Log in to your SendSeven account at https://app.sendseven.com
  2. Navigate to Settings > API Tokens
  3. Create a new API token with the required scopes
  4. Copy the token (format: s7_xxxxxxxxxxxx)
  5. In n8n, add a new credential of type "SendSeven API"
  6. Paste your API token

OAuth2 (For advanced integrations)

  1. Log in to your SendSeven account
  2. Navigate to Settings > OAuth Apps
  3. Create a new OAuth application
  4. Configure the redirect URI to match your n8n instance
  5. In n8n, add a new credential of type "SendSeven OAuth2 API"
  6. Complete the OAuth2 authorization flow

Required Scopes

Different operations require different scopes:

| Operation | Required Scopes | |-----------|-----------------| | Send Message | messages:send | | Read Messages | messages:read | | Create/Update Contact | contacts:create, contacts:write | | Read Contacts | contacts:read | | Manage Tags | tags:read, tags:write | | Read Conversations | conversations:read | | Manage Conversations | conversations:write | | Webhooks | webhooks:read, webhooks:write |

Example Workflows

Send WhatsApp notification on new CRM lead

  1. Add a trigger from your CRM (e.g., HubSpot, Salesforce)
  2. Add SendSeven node with "WhatsApp Template > Send" operation
  3. Map the lead data to template variables

Log support conversations to spreadsheet

  1. Add SendSeven Trigger with "Conversation Closed" event
  2. Add Google Sheets node to append row
  3. Map conversation data to spreadsheet columns

Auto-respond to incoming messages

  1. Add SendSeven Trigger with "Message Received" event
  2. Add IF node to check message content
  3. Add SendSeven node with "Message > Send" to reply

Resources

Support

  • Email: [email protected]
  • Documentation: https://sendseven.com/docs
  • Status: https://status.sendseven.com

License

MIT License - see LICENSE file for details.

Changelog

1.0.0

  • Initial release
  • Actions: Send Message, Create/Update/Get/Search Contact, Add Tag, Get/Search Conversation, Close/Assign Conversation, Send WhatsApp Template
  • Triggers: Message Received/Sent, Conversation Created/Closed, Contact Created/Updated, Ticket Created/Closed, Campaign Sent
  • Authentication: API Key and OAuth2 support