Actions92
- Contact Actions
- Employee Actions
- Estimate Actions
- Invoice Actions
- Job Actions
- Line Item Actions
- Note Actions
- Setting Actions
- Supplier Actions
- Task Actions
- Technician Actions
- User Actions
- Website Actions
- WhatsApp Actions
Overview
This node integrates with the WibiClick API to manage various resources such as users, websites, jobs, contacts, and more. Specifically for the User resource and the Connect User to Website operation, it allows you to associate a user with a website by sending a request to the API endpoint that connects the specified user ID to the specified website ID.
This operation is useful in scenarios where you want to programmatically link users to websites within your system, for example:
- Assigning a user to manage or have access to a particular website.
- Tracking which users are associated with which websites for permissions or analytics.
- Automating user-website relationships during onboarding or integration workflows.
Properties
| Name | Meaning |
|---|---|
| Website ID | The unique identifier of the website to which the user will be connected. |
| User ID | The unique identifier of the user to connect to the website. |
These properties are required inputs for the operation.
Output
The output JSON contains the response from the WibiClick API after attempting to connect the user to the website. It typically includes confirmation details about the connection status or any relevant data returned by the API.
Example output structure (simplified):
{
"json": {
// API response confirming the connection
}
}
The exact fields depend on the API's response but generally indicate success or failure of the connection action.
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
- Invalid or missing Website ID/User ID: Ensure both IDs are provided and valid; otherwise, the API call will fail.
- Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
- API endpoint errors: If the API returns an error, check the message for details. Common issues include invalid IDs or network problems.
- Unexpected responses: If the API response does not contain expected confirmation, verify the API documentation or contact support.
Links and References
- WibiClick API Documentation (hypothetical link, replace with actual if available)
- n8n HTTP Request Node documentation: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/