WibiClick icon

WibiClick

Interact with WibiClick API

Actions92

Overview

The node provides integration with the WibiClick API, allowing users to manage various resources such as tasks, notes, jobs, contacts, employees, estimates, invoices, line items, websites, WhatsApp messages, users, technicians, suppliers, and settings. Specifically for the Task resource and the Delete Task operation, this node enables deleting a task by its ID.

This is useful in automation workflows where tasks need to be programmatically removed from the WibiClick system, for example:

  • Automatically cleaning up completed or obsolete tasks.
  • Integrating task deletion into broader business process automations.
  • Managing task lifecycle based on external triggers or conditions.

Properties

Name Meaning
Task ID The unique identifier of the task to delete. This property is required.

Output

The output JSON contains the response from the WibiClick API after attempting to delete the specified task. Typically, it will include success status or details about the deletion result.

If the task is not found, the node throws an error indicating "Task not found". For other unexpected errors, a generic error message is thrown.

No binary data output is involved in this operation.

Example output JSON structure on successful deletion might look like:

{
  "success": true,
  "message": "Task deleted successfully"
}

or the raw API response as returned by the WibiClick service.

Dependencies

  • Requires an active connection to the WibiClick API.
  • Needs an API key credential configured in n8n for authentication.
  • The node uses HTTP requests to communicate with the WibiClick REST endpoints.

Troubleshooting

  • Task not found error: Occurs if the provided Task ID does not exist in the system. Verify that the Task ID is correct and that the task exists before attempting deletion.
  • Unexpected error: Could be due to network issues, invalid credentials, or API changes. Check API key validity and network connectivity.
  • Missing Task ID: Since Task ID is required, ensure it is provided; otherwise, the node will fail.
  • API rate limits or permissions: If the API key lacks permission to delete tasks or if rate limits are exceeded, errors may occur. Confirm API key permissions and usage limits.

Links and References


This summary focuses solely on the Task resource and the Delete Task operation as requested.

Discussion