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 related to websites, including adding new websites. Specifically, the "Add Website" operation allows users to add a new website by providing its URL. This is useful in scenarios where you want to programmatically register or track websites within the WibiClick platform as part of an automated workflow.
Practical examples include:
- Automatically adding a newly launched website to your WibiClick account for analytics and tracking.
- Integrating website registration into a larger automation that manages multiple digital assets.
- Streamlining onboarding processes by adding client websites directly from form submissions or CRM triggers.
Properties
| Name | Meaning |
|---|---|
| URL | The URL of the website to add. This is a required string input specifying the website's address. |
Output
The output JSON contains the response from the WibiClick API after attempting to add the website. It typically includes details about the newly added website such as its ID, URL, and any other metadata returned by the API.
Example output structure (simplified):
{
"json": {
"id": "string",
"url": "string",
"createdAt": "string",
"otherMetadata": "..."
}
}
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the WibiClick API via an API key credential.
- The node uses HTTP requests to communicate with the WibiClick API endpoints.
- Proper configuration of the API base URL and authentication token is necessary in the node credentials.
Troubleshooting
- Invalid or missing URL: Ensure the URL property is provided and correctly formatted.
- Authentication errors: Verify that the API key credential is valid and has the necessary permissions.
- API request failures: Network issues or incorrect API endpoint configurations can cause failures; check connectivity and API status.
- Unexpected API responses: If the API returns an error or unexpected data, review the API documentation and ensure all required parameters are correctly set.
Common error message example:
"Failed to create note"— Not applicable here but similar errors may indicate failure to add the website; check API response for details.
Links and References
- WibiClick API Documentation (Assumed URL, replace with actual if available)
- n8n HTTP Request Node Documentation: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/
- General n8n Credential Setup: https://docs.n8n.io/credentials/overview/
This summary focuses on the "Website" resource and the "Add Website" operation as requested, based on static analysis of the provided source code and input properties.