Actions23
- ✉️ Message Actions
- 👥 Group Actions
Overview
The node "Wazzap API" allows users to send text messages via the Wazzap messaging service. Specifically, for the resource ✉️ Message and operation ✉️ Send Text Message, it enables sending plain text SMS or chat messages to a specified recipient phone number.
This node is beneficial in scenarios such as:
- Automating customer notifications or alerts via SMS.
- Sending reminders or confirmations to users.
- Integrating messaging capabilities into workflows without manual intervention.
For example, a business could use this node to automatically send order status updates to customers' phones after a purchase.
Properties
| Name | Meaning |
|---|---|
| 📱 Recipient Phone Number | The full phone number of the message recipient, including country code (e.g., +1234567890). |
| ✉️ Text Message | The content of the text message to be sent to the recipient. |
| ⚙️ Additional Options | Optional settings to customize message sending: |
| - 🔢 Priority Number | Select which sending number to use: 0 = Default, 999 = Random, 1–5 = Specific number slot. |
| - ⏱️ Delay Settings | Configure a random delay range before sending the message: |
| -- ⏱️ Start (MS) | Minimum delay in milliseconds (e.g., 1200 ms = 1.2 seconds). |
| -- ⏱️ End (MS) | Maximum delay in milliseconds; actual delay is randomly chosen between start and end values. |
Output
The node outputs an array of JSON objects representing the result of the send message operation. Each object typically contains information about the success or failure of the message sending request, such as message ID, status, or error details if any.
If binary data were involved (e.g., media attachments), it would be included in the output's binary property, but for this operation, only JSON output is relevant.
Dependencies
- Requires an active connection to the Wazzap API service.
- Needs an API authentication credential configured in n8n to authorize requests.
- The base URL for API requests is
https://doc.wazzap.mx/api-reference. - No additional external dependencies are indicated.
Troubleshooting
- Unsupported operation error: If the node throws an error stating the operation is unsupported, verify that the resource and operation names are correctly set to "✉️ Message" and "✉️ Send Text Message".
- Invalid phone number format: Ensure the recipient phone number includes the country code and is formatted correctly.
- API authentication errors: Confirm that the API key or token credential is valid and has necessary permissions.
- Message not sent or delayed indefinitely: Check the delay settings; overly large delay ranges might cause unexpected wait times.
- Network or connectivity issues: Verify network access to the Wazzap API endpoint.
Links and References
- Wazzap API Documentation (official API reference)
- n8n documentation on creating custom nodes