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

v0.3.0

Published

n8n nodes for eTelecom integration

Readme

n8n-nodes-etelecom

eTelecom Zalo OA Banner

This integration package provides nodes to connect eTelecom Zalo OA services with n8n, allowing you to send and receive Zalo OA messages through eTelecom in your n8n workflows.

Features

This package currently provides the following nodes:

  • eTelecom Zalo OA Send Message: Send text messages from a Zalo OA account to Zalo users
  • eTelecom Zalo OA Trigger: Trigger workflows when receiving webhook events from Zalo OA (e.g., incoming messages, messaging status)
  • eTelecom Zalo OA Request User Info: Request user information from a Zalo OA account
  • eTelecom Zalo OA Send ZNS: Send ZNS messages from a Zalo OA account to Zalo users
  • eTelecom Zalo OA Request Consent: Request consent permissions from Zalo users
  • eTelecom Zalo OA Check Consent: Check consent status of a phone number with a Zalo OA account

Installation

Follow these instructions to install this node package in your n8n instance:

In n8n Desktop or via npm

# Install via npm
npm install n8n-nodes-etelecom

# Or with pnpm
pnpm install n8n-nodes-etelecom

For self-hosted n8n users

  1. Open your n8n installation directory
  2. Install the package: npm install n8n-nodes-etelecom
  3. Restart n8n

Using Docker

If you're running n8n with Docker, you can install custom nodes using an environment variable:

docker run -it --rm \
  --name n8n \
  -p 5678:5678 \
  -e N8N_CUSTOM_EXTENSIONS="n8n-nodes-etelecom" \
  n8nio/n8n

Usage

After installation, the eTelecom Zalo OA nodes will be available in the n8n workflow editor under the "eTelecom" category.

Configuration Requirements

  1. You need an eTelecom account with API access
  2. Add eTelecom API credentials to n8n:
    • API Domain (typically the eTelecom server address)
    • Your API Token

eTelecom Zalo OA Send Message

This node allows you to send text messages from your Zalo OA account to Zalo users. Parameters include:

  • Zalo Official Account: Select the Zalo OA account you want to send messages from
  • User ID: The ID of the Zalo user you want to send the message to
  • Message: Text message content

eTelecom Zalo OA Trigger

This node creates a webhook endpoint and triggers your workflow when Zalo OA events are received through eTelecom. To use:

  1. Add the eTelecom Zalo OA Trigger node to your workflow
  2. Select the Zalo OA account to receive events from
  3. Activate the workflow
  4. The node will automatically register the webhook URL with eTelecom for the selected Zalo OA account
  5. Your workflow will now be triggered whenever there's an event from the selected OA account

eTelecom Zalo OA Request User Info

This node allows you to request user information from your Zalo OA account. Parameters include:

  • Zalo Official Account: Select the Zalo OA account you want to request information from
  • Zalo User ID: The ID of the Zalo user you want to request information for

eTelecom Zalo OA Request Consent

This node allows you to request consent permissions from Zalo users for your Zalo OA account. Parameters include:

  • Zalo Official Account: Select the Zalo OA account you want to request consent for
  • Phone: The phone number of the user you want to request permissions from
  • Call Type: The type of call permission to request (audio, video, or both)
  • Reason Code: The purpose for requesting consent

eTelecom Zalo OA Check Consent

This node allows you to check the consent status of a phone number with your Zalo OA account. Parameters include:

  • Zalo Official Account: Select the Zalo OA account you want to check consent status for
  • Phone: The phone number to check consent status for

Development

Requirements

To develop this project, you need:

  • git
  • Node.js and pnpm (Node minimum version 18)
  • n8n installation: pnpm install n8n -g

Local Development

  1. Clone the repo: git clone https://github.com/istjdev/n8n-nodes-etelecom.git
  2. Install dependencies: pnpm install
  3. Compile TypeScript code: pnpm build
  4. Link the package to local n8n: pnpm link
  5. Start n8n in development mode: n8n start -d ./

License

MIT