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 manage various resources related to business operations, including websites, notes, jobs, contacts, employees, estimates, invoices, line items, WhatsApp messages, users, technicians, tasks, suppliers, and settings. Specifically, for the Website resource with the Delete Website operation, the node deletes a website identified by its unique ID.
Common scenarios where this node is beneficial include automating website management workflows such as removing obsolete or unwanted websites from the system, cleaning up data, or integrating website deletion into larger automation processes involving customer or job lifecycle management.
Practical example:
- Automatically delete a website record when a client cancels their subscription or closes their account, ensuring that all associated data is cleaned up in your CRM or CMS system.
Properties
| Name | Meaning |
|---|---|
| Website ID | The unique identifier of the website to be deleted. This is a required string input. |
Output
The output JSON contains the response from the WibiClick API after attempting to delete the website. Typically, it will include success status and any relevant messages returned by the API indicating whether the deletion was successful.
Example output structure:
{
"success": true,
"message": "Website deleted successfully"
}
or an error message if the deletion failed.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the WibiClick API.
- Requires an API key credential for authentication with the WibiClick service.
- The node uses HTTP requests to communicate with the WibiClick API endpoints.
- No additional environment variables are explicitly required beyond the API key credential.
Troubleshooting
Common issues:
- Invalid or missing Website ID: Ensure the Website ID provided is correct and exists in the WibiClick system.
- Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
- Network or API endpoint errors: Check network connectivity and confirm the WibiClick API URL is reachable.
Error messages:
"Failed to delete website"or similar API error responses indicate the deletion did not succeed. Check the Website ID and API permissions.- HTTP 401 Unauthorized: Indicates invalid or missing API key credential.
- HTTP 404 Not Found: The specified Website ID does not exist.
"An unexpected error occurred": General catch-all error; check logs and API responses for more details.
To resolve errors, verify inputs, credentials, and API availability. Use the node's "Continue On Fail" option to handle errors gracefully in workflows.
Links and References
- WibiClick API Documentation (Assumed official API docs for reference)
- n8n Documentation on HTTP Request Node (for understanding underlying request mechanics)
- n8n Community Forum and Support for troubleshooting integration issues