Actions7
Overview
This node integrates with Zoho Calendar to retrieve detailed information about a specific calendar event. It is designed to fetch comprehensive details of an event identified by its unique event UID within a specified calendar. This functionality is useful in scenarios where you need to display, process, or synchronize event data from Zoho Calendar into other systems or workflows.
Practical examples:
- Automatically fetching event details to send customized reminders or notifications.
- Synchronizing event metadata with external CRM or project management tools.
- Extracting event information for reporting or analytics purposes.
Properties
| Name | Meaning |
|---|---|
| Calendar UID | The unique identifier (UID) of the calendar containing the event. |
| Event UID | The unique identifier (UID) of the event whose details are to be retrieved. |
Output
The node outputs a JSON object under the field zohoResponse which contains the full details of the requested event as returned by the Zoho Calendar API. This includes all event metadata such as title, description, start and end times, attendees, location, privacy settings, and any other event-specific information provided by Zoho.
No binary data output is produced for this operation.
Dependencies
- Requires an active Zoho Calendar API OAuth2 authentication credential configured in n8n.
- Relies on the Zoho Calendar REST API endpoint to fetch event details.
- Uses the
moment-timezonelibrary internally for date-time handling.
Troubleshooting
Common issues:
- Invalid or missing Calendar UID or Event UID will cause the API request to fail.
- Expired or misconfigured OAuth2 credentials can lead to authentication errors.
- Network connectivity problems may prevent successful API calls.
Error messages and resolutions:
- Authentication errors: Ensure that the OAuth2 credential is valid and has the necessary permissions.
- 404 Not Found: Verify that both the Calendar UID and Event UID are correct and that the event exists.
- Rate limiting or API quota exceeded: Check Zoho API usage limits and consider adding retry logic or reducing request frequency.