n8n-nodes-waappa
v0.1.15
Published
n8n Node for Waappa WhatsApp API
Readme
n8n-nodes-waappa
Waappa community nodes for n8n. Use these nodes to send WhatsApp messages, upload media, manage selected group/contact utilities, and receive Waappa webhook events inside n8n workflows.
Installation
Install from n8n Community Nodes:
- Open n8n.
- Go to Settings > Community Nodes.
- Select Install.
- Enter:
n8n-nodes-waappaFor local development:
npm install
npm run buildCredentials
Create a credential named Waappa API.
Fields:
- API Key: your Waappa session API key.
- Session ID: your Waappa session name, for example
default. - Base URL: Waappa API base URL including
/api.
Default base URL:
https://api.waappa.com/apiThe credential sends the API key as the Authorization header.
The credential test checks the configured session by calling:
GET {baseUrl}/sessions/{session}Waappa Node
The Waappa action node supports the selected Waappa API operations below.
Messages
- Send Text
- Send Image
- Send Video
- Send Audio (Voice)
- Send Document
- Send Contact VCard
- Send Location
- Send Poll
- Send List
- Edit Message
- Delete Message
Contact cards can be sent in two modes:
- Contact Fields: full name, organization, phone number, WhatsApp ID.
- Raw VCard: direct vCard string.
Media
- Upload File
- Download Media
Upload File accepts an n8n binary property, defaulting to data.
Download Media stores message media in Waappa temporary media storage through:
POST /api/media/download
{"message_id":"message-id"}Groups
- Get All Groups
- Create Group
- Add Participants
- Get Group Participants
Contacts
- Get All Contacts
LID / Phone
- Get Phone from LID
- Get LID from Phone
Waappa Trigger
The Waappa Trigger node receives incoming webhook events from Waappa.
Outputs:
- Incoming Messages
- All Messages
- Message Status
- Other Events
Trigger options:
- Optional header authentication.
- Event filtering by Waappa event name.
Use the trigger webhook URL as the webhook URL in your Waappa session configuration.
Common Usage
Send a Text Message
- Add the Waappa node.
- Select Messages.
- Select Send Text.
- Enter a WhatsApp chat ID, for example:
[email protected]- Enter the message text.
Upload and Send Media
- Use an n8n node that outputs binary data.
- Add the Waappa node.
- Select Media > Upload File.
- Set Binary Property to the binary field name, usually
data. - Use the returned URL in Messages > Send Image, Send Video, Send Audio, or Send Document.
Development
npm install
npm run build
npm run lintPublishing
npm run build
npm publishBefore publishing, test credentials, at least one send message operation, media upload, and the trigger webhook in a real n8n workflow.
License
MIT
