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 interacts with the WibiClick API to manage various resources related to websites, customers, jobs, employees, invoices, estimates, tasks, WhatsApp messages, and settings. Specifically for the Setting resource with the Delete Setting operation, it deletes a particular setting associated with a website by its ID.
Common scenarios where this node is beneficial include automating the management of website configurations, cleaning up obsolete or incorrect settings, and integrating WibiClick's backend services into workflows for streamlined operations.
For example, you might use this node to automatically remove outdated configuration entries from a website’s settings when certain conditions are met in your workflow, ensuring that only relevant settings remain active.
Properties
| Name | Meaning |
|---|---|
| Website ID | The unique identifier of the website to which the setting belongs. |
| Setting ID | The unique identifier of the specific setting to delete from the website's configuration. |
Output
The output JSON contains the response from the WibiClick API after attempting to delete the specified setting. Typically, this will include success status and any relevant messages or data returned by the API indicating whether the deletion was successful.
Example output structure:
{
"success": true,
"message": "Setting deleted successfully"
}
or an error message if the deletion failed.
Dependencies
- Requires an API key credential for authenticating requests to the WibiClick API.
- The node uses HTTP requests to communicate with the WibiClick API endpoints.
- No additional external dependencies beyond the configured API credentials and network access to the WibiClick service.
Troubleshooting
Common issues:
- Invalid or missing Website ID or Setting ID parameters will cause the API request to fail.
- Network connectivity problems can prevent communication with the WibiClick API.
- Insufficient permissions or invalid API key may result in authorization errors.
Error messages:
"Failed to delete setting"or similar indicates the API rejected the deletion request; verify IDs and permissions.- HTTP 401 Unauthorized errors suggest issues with the API key credential.
- HTTP 404 Not Found errors indicate the specified setting or website does not exist.
Resolution tips:
- Double-check that the Website ID and Setting ID are correct and correspond to existing entities.
- Ensure the API key credential is valid and has appropriate permissions.
- Confirm network connectivity to the WibiClick API endpoint.
Links and References
- WibiClick API Documentation (hypothetical link, replace with actual if available)
- n8n documentation on HTTP Request Node for understanding how API calls are made within nodes.