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 suppliers. Specifically, for the Supplier resource and the Delete Supplier operation, it allows users to delete a supplier record associated with a given website.

Typical use cases include:

  • Automating supplier management workflows by removing outdated or incorrect supplier entries.
  • Integrating supplier deletion into larger automation processes, such as when cleaning up data after a project ends or a supplier relationship is terminated.

Example: A user can configure this node to delete a supplier by specifying the website ID and the supplier ID, which triggers an API call to remove that supplier from the system.

Properties

Name Meaning
Website ID The unique identifier of the website under which the supplier exists.
Supplier ID The unique identifier of the supplier to be deleted.

These properties are required inputs for the delete supplier operation.

Output

The output of the node for the Delete Supplier operation is a JSON object representing the response from the WibiClick API after attempting to delete the supplier. This typically includes success status and any relevant messages or data returned by the API.

Example output structure (simplified):

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

or in case of failure:

{
  "success": false,
  "error": "Error message describing the failure"
}

The node does not output binary data for this operation.

Dependencies

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

Troubleshooting

  • Common issues:

    • Invalid or missing Website ID or Supplier ID parameters will cause the API request to fail.
    • Authentication errors if the API key credential is invalid or expired.
    • Network connectivity issues preventing communication with the WibiClick API.
  • Common error messages:

    • "Failed to delete supplier" or similar API error responses indicating the supplier could not be found or deleted.
    • HTTP 401 Unauthorized errors due to invalid API credentials.
    • Validation errors if required parameters are missing or malformed.
  • Resolution tips:

    • Ensure the Website ID and Supplier ID are correct and correspond to existing records.
    • Verify that the API key credential is correctly set up and has necessary permissions.
    • Check network connectivity and firewall settings.
    • Use the node's "Continue on Fail" option to handle errors gracefully in workflows.

Links and References


This summary focuses exclusively on the Supplier resource's Delete Supplier operation as requested, based on static analysis of the provided source code and property definitions.

Discussion