WibiClick icon

WibiClick

Interact with WibiClick API

Actions92

Overview

The node integrates with the WibiClick API to manage various resources such as jobs, notes, contacts, employees, estimates, invoices, line items, websites, WhatsApp messages, users, technicians, tasks, suppliers, and settings. Specifically for the Job resource with the Update Status operation, the node updates the status of an existing job within a specified website.

This operation is useful in workflows where job progress needs to be tracked or updated automatically based on external triggers or internal process changes. For example, after completing a service call, a workflow could update the job status to "Completed" or "In Progress" to keep records current and notify relevant stakeholders.

Properties

Name Meaning
Website ID The unique identifier of the website under which the job exists.
Job ID The unique identifier of the job whose status is to be updated.
Status The new status value to assign to the job (e.g., "Completed", "In Progress", etc.).

Output

The output JSON contains the response from the WibiClick API after attempting to update the job status. Typically, it includes confirmation details about the updated job status or error information if the update failed.

Example output structure:

{
  "json": {
    "id": "job-id",
    "jobStatus": "new-status",
    // other job-related fields returned by the API
  }
}

No binary data output is produced by this operation.

Dependencies

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

Troubleshooting

  • Missing Required Parameters: Ensure that Website ID, Job ID, and Status are provided; otherwise, the request will fail.
  • API Authentication Errors: Verify that the API key credential is correctly set up and has sufficient permissions.
  • Invalid Job ID or Website ID: If the IDs do not correspond to existing entities, the API may return errors indicating the job or website was not found.
  • Network Issues: Connectivity problems can cause request failures; check network access to the WibiClick API endpoint.
  • Unexpected API Responses: If the API returns unexpected data or errors, review the API documentation or contact support.

Links and References

Discussion