WibiClick icon

WibiClick

Interact with WibiClick API

Actions92

Overview

This node integrates with the WibiClick API to manage various resources, including notes. Specifically, for the Note resource with the Create operation, it allows users to create a new note associated with a specific website and user. This is useful in scenarios where you want to programmatically add notes or comments related to a website or user within an automated workflow.

For example, you might use this node to automatically log customer feedback or internal comments whenever a certain event occurs on your website, helping keep track of important information without manual entry.

Properties

Name Meaning
Website ID The unique identifier of the website to which the note will be attached.
User ID The unique identifier of the user creating the note.
Title The title or subject line of the note.
Notes The main content or body text of the note.

Output

The output JSON contains a success boolean indicating if the note creation was successful, and a note object representing the created note as returned by the WibiClick API. The structure looks like:

{
  "success": true,
  "note": {
    // Note details as returned from the API
  }
}

No binary data is output by this operation.

Dependencies

  • Requires access 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

  • Failed to create note: This error indicates the API did not return the expected note data after attempting to create it. Check that all required fields (Website ID, User ID, Title, Notes) are correctly provided and valid.
  • Authentication errors: Ensure the API key credential is correctly set up and has sufficient permissions.
  • Network issues: Verify connectivity to the WibiClick API endpoint.
  • If the node is set to continue on fail, errors will be included in the output JSON under an error field.

Links and References

Discussion