WibiClick icon

WibiClick

Interact with WibiClick API

Actions92

Overview

This node integrates with the WibiClick API to manage various resources related to business operations, including jobs, notes, contacts, employees, estimates, invoices, line items, websites, WhatsApp messages, users, technicians, tasks, suppliers, and settings. Specifically for the Job - Delete operation, it allows users to delete a job by its ID.

Common scenarios where this node is beneficial include automating job management workflows such as creating, updating, retrieving, and deleting jobs within a business system. For example, when a job is no longer needed or was created in error, this node can be used to programmatically remove it from the system, helping maintain clean and accurate records.

Practical example:

  • Automatically delete completed or canceled jobs from the system after a certain period.
  • Integrate with other systems to synchronize job deletions based on external triggers.

Properties

Name Meaning
Website ID The unique identifier of the website associated with the job. Required for most job-related operations.
Job ID The unique identifier of the job to delete. This is required to specify which job should be removed.

Output

The output of the delete job operation is a JSON object containing the response from the WibiClick API regarding the deletion request. Typically, this will indicate success or failure of the deletion action.

Example output structure:

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

or an error message if the deletion failed.

No binary data 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

  • Missing Job ID: If the Job ID is not provided, the node will fail because it cannot identify which job to delete.
  • Invalid Job ID: Providing an incorrect or non-existent Job ID may result in an error from the API indicating that the job could not be found.
  • API Authentication Errors: Ensure the API key credential is valid and has sufficient permissions to delete jobs.
  • Network Issues: Connectivity problems with the WibiClick API endpoint can cause request failures.
  • Error Messages:
    • "Failed to delete job" or similar indicates the API rejected the deletion request; verify the Job ID and permissions.
    • HTTP errors like 401 Unauthorized suggest issues with the API key.

To resolve these issues:

  • Double-check the Job ID and Website ID inputs.
  • Verify the API key credential is correctly configured and active.
  • Check network connectivity and API endpoint availability.
  • Review API documentation or contact support if persistent errors occur.

Links and References


This summary focuses on the Job - Delete operation of the WibiClick node as requested.

Discussion