Actions12
Overview
The node "Wazzap API" enables sending text messages through the Wazzap messaging platform. It is designed to interact with the Wazzap API, allowing users to send customized text messages to specified recipients. This node is useful in scenarios such as automating customer notifications, sending alerts, or managing communication workflows where text messaging is required.
For example, a business could use this node to automatically send order confirmations or appointment reminders to customers via WhatsApp-like messaging services supported by Wazzap.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instancia | The name of the instance that will send the message. |
| Numero Do Destinatario | The recipient's remote JID (unique identifier for the destination contact). |
| Mensagem | The text message content to be sent. |
| Opções | Additional options to customize message sending: |
| - Delay | Number of milliseconds to wait before sending the message (default 1200 ms). |
| - Responder Mensagem | Option to reply to a specific message by providing its message ID. |
| - Menções | Settings for mentions within the message: |
| - Mencionar Todos | Boolean to mention all participants in a group. |
| - Números Para Mencionar | Comma-separated list of numbers to mention individually (only if not mentioning everyone). |
| - Preview De Link | Boolean to enable or disable link preview in the message (default enabled). |
Output
The node outputs an array of JSON objects representing the result of the send-text operation. Each object typically contains information about the message sent, such as message ID, status, or any response data returned by the Wazzap API.
If the node supports binary data output (not explicitly shown here), it would represent media or attachments related to the message, but for this operation, the focus is on JSON output describing the sent text message.
Dependencies
- Requires an active connection to the Wazzap API service.
- Needs an API authentication token or API key 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
Common Issues:
- Invalid or missing recipient JID (
Numero Do Destinatario) can cause message sending failures. - Incorrect or expired API credentials will prevent successful API calls.
- Network connectivity issues may block access to the Wazzap API endpoint.
- Providing invalid message IDs when replying to messages (
Responder Mensagem) can cause errors.
- Invalid or missing recipient JID (
Error Messages:
"Operação não suportada."indicates that the selected operation is not implemented or recognized; ensure the correct resource and operation names are used.- API errors from Wazzap may include HTTP status codes and error messages indicating authentication failure, invalid parameters, or rate limiting.
Resolutions:
- Verify all required fields are correctly filled.
- Check and update API credentials in n8n settings.
- Confirm network access to the Wazzap API endpoint.
- Use valid message IDs when replying to messages.
Links and References
- Wazzap API Documentation (official API reference)
- n8n documentation on Creating Custom Nodes (for general guidance)