Actions92
- Contact Actions
- Employee Actions
- Estimate Actions
- Invoice Actions
- Job Actions
- Line Item Actions
- Note Actions
- Setting Actions
- Supplier Actions
- Task Actions
- Technician Actions
- User Actions
- Website Actions
- WhatsApp Actions
Overview
This node integrates with the WibiClick API to perform various operations across multiple resources, including WhatsApp messaging. Specifically, for the WhatsApp - Send WhatsApp Message operation, it allows sending a text message to a specified phone number via WhatsApp associated with a particular website ID.
Common scenarios where this node is beneficial include:
- Automating customer notifications or alerts through WhatsApp.
- Sending personalized messages to clients directly from workflows.
- Integrating WhatsApp communication into broader business processes like support ticketing or marketing campaigns.
Practical example:
- A workflow triggers when a new order is placed and uses this node to send an order confirmation message to the customer's WhatsApp number.
Properties
| Name | Meaning |
|---|---|
| Website ID | The unique identifier of the website associated with the WhatsApp instance. |
| To | The recipient's phone number to which the WhatsApp message will be sent. |
| Message | The text content of the WhatsApp message to send. |
Output
The output JSON contains a single field:
response: An object representing the response from the WibiClick API after attempting to send the WhatsApp message. This typically includes status information about the message delivery.
No binary data is output by this operation.
Example output structure:
{
"response": {
// API response details about the sent message
}
}
Dependencies
- Requires an active connection to the WibiClick API.
- Needs an API key credential configured in n8n for authentication with the WibiClick service.
- The node uses HTTP requests to communicate with the WibiClick API endpoints.
Troubleshooting
- Invalid or missing Website ID: Ensure the Website ID corresponds to a valid website registered in the WibiClick system.
- Incorrect phone number format: The "To" phone number must be in the correct international format accepted by WhatsApp.
- API authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
- Message delivery failures: Check the API response for error messages indicating issues such as blocked numbers or unsupported message types.
- Network connectivity issues: Ensure the n8n instance can reach the WibiClick API endpoint.
If the node throws errors related to HTTP requests or API responses, inspect the error message for clues and verify all input parameters.
Links and References
- WibiClick API Documentation (hypothetical link)
- WhatsApp Business API Overview
- n8n documentation on HTTP Request Node (for understanding underlying request mechanics)