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 and retrieve data related to websites and their associated entities. Specifically, for the Website resource and the Get Performance operation, it fetches performance metrics of a specified website for a given year and month.
Typical use cases include:
- Monitoring website traffic and engagement metrics monthly.
- Generating reports on website performance trends over time.
- Integrating website analytics into automated workflows for marketing or operational insights.
For example, a user might configure this node to pull monthly performance data for a website to trigger alerts if key metrics fall below thresholds or to update dashboards automatically.
Properties
| Name | Meaning |
|---|---|
| Website ID | The unique identifier of the website for which performance data is requested. |
| Year | The calendar year (e.g., 2024) for which the performance metrics should be retrieved. |
| Month | The calendar month (1-12) within the specified year for the performance data. |
Output
The output JSON contains the website performance metrics for the specified website, year, and month. The exact structure depends on the API response but typically includes various performance indicators such as visits, clicks, conversions, or other relevant analytics data.
Example output structure (illustrative):
{
"visits": 12345,
"clicks": 6789,
"bounceRate": 0.45,
"averageSessionDuration": 300,
"conversions": 150
}
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 expects the API URL and authentication token to be configured in the credentials.
- Network access to the WibiClick API endpoint is necessary.
Troubleshooting
- Invalid Website ID: If the provided Website ID does not exist or is incorrect, the API may return an error or empty results. Verify the Website ID is correct.
- Invalid Date Parameters: Ensure that the Year and Month are valid numbers; Month must be between 1 and 12.
- Authentication Errors: If the API key is missing, invalid, or expired, requests will fail with authorization errors. Check the API key configuration.
- API Rate Limits or Downtime: Temporary failures may occur due to rate limiting or service outages. Retry after some time or check the service status.
- Unexpected Response Format: If the API changes its response format, the node's output may not match expectations. Confirm compatibility with the current API version.
Links and References
- WibiClick API Documentation (Assumed URL, replace with actual if available)
- n8n Documentation on Creating Custom Nodes
- General information on website analytics and performance metrics.
This summary focuses exclusively on the Website resource and the Get Performance operation as requested.