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.
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
Follow these instructions to install this node package in your n8n instance:
# Install via npm
npm install n8n-nodes-etelecom
# Or with pnpm
pnpm install n8n-nodes-etelecom
- Open your n8n installation directory
- Install the package:
npm install n8n-nodes-etelecom
- Restart n8n
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
After installation, the eTelecom Zalo OA nodes will be available in the n8n workflow editor under the "eTelecom" category.
- You need an eTelecom account with API access
- Add eTelecom API credentials to n8n:
- API Domain (typically the eTelecom server address)
- Your API Token
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
This node creates a webhook endpoint and triggers your workflow when Zalo OA events are received through eTelecom. To use:
- Add the eTelecom Zalo OA Trigger node to your workflow
- Select the Zalo OA account to receive events from
- Activate the workflow
- The node will automatically register the webhook URL with eTelecom for the selected Zalo OA account
- Your workflow will now be triggered whenever there's an event from the selected OA account
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
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
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
To develop this project, you need:
- git
- Node.js and pnpm (Node minimum version 18)
- n8n installation:
pnpm install n8n -g
- Clone the repo:
git clone https://github.com/isfjdev/n8n-nodes-etelecom.git
- Install dependencies:
pnpm install
- Compile TypeScript code:
pnpm build
- Link the package to local n8n:
pnpm link
- Start n8n in development mode:
n8n start -d ./