WibiClick icon

WibiClick

Interact with WibiClick API

Actions92

Overview

This node integrates with the WibiClick API to manage various resources such as users, notes, jobs, contacts, and more. Specifically for the User resource with the Delete User operation, it allows you to delete a user by their unique ID. This is useful in scenarios where you need to automate user management workflows, such as removing users who no longer require access or cleaning up user data.

Practical example: Automatically deleting a user from your system when they unsubscribe or are removed from an external system, ensuring your user database stays current without manual intervention.

Properties

Name Meaning
User ID The unique identifier of the user to be deleted

Output

The output JSON contains the response from the WibiClick API after attempting to delete the user. It typically includes confirmation of the deletion or details about the operation's success or failure.

Example output structure:

{
  "json": {
    // API response confirming deletion or error details
  }
}

No binary data is involved in this operation.

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 API endpoints.

Troubleshooting

  • Common issues:

    • Invalid or missing User ID parameter will cause the request to fail.
    • API authentication errors if the API key is incorrect or missing.
    • Network connectivity issues preventing communication with the WibiClick API.
  • Error messages:

    • If the user ID does not exist, the API may return an error indicating the user was not found.
    • Authentication errors will indicate invalid credentials; verify the API key setup.
    • Unexpected server errors should be retried or checked with WibiClick support.

To resolve these, ensure the User ID is correct, the API key is valid, and network access to the API endpoint is available.

Links and References

Discussion