Zoho Calendar
API actions for the Zoho Calendar integration.
Zoho Calendar
View and manage events in your Zoho Calendar.
Create Zoho Calendar event
Create an event on a Zoho calendar with the provided details.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
calendar_id | string | No | The Zoho calendar to add the event to. |
title | string | No | Event title. |
start_date_time | string | No | Event start date and time in yyyyMMddTHHmmssZ format, for example 20241028T103000Z. |
end_date_time | string | No | Event end date and time in yyyyMMddTHHmmssZ format, for example 20241028T113000Z. |
location | string | No | Event location (optional). |
description | string | No | Event description (optional). |
Response
{}Delete Zoho Calendar event
Delete a Zoho Calendar event by its ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
calendar_id | string | No | The Zoho calendar that has the event. |
event_id | string | No | The ID of the event to delete. |
Response
{}List Zoho calendars
List all calendars in your Zoho Calendar account.
Response
[
{}
]List Zoho Calendar events
List events for a Zoho calendar within the optional date range.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
calendar_id | string | No | The Zoho calendar to list events from. |
start_date | string | No | List events on or after this date, in yyyyMMdd or yyyyMMddTHHmmssZ format, for example 20240101. |
end_date | string | No | List events on or before this date, in yyyyMMdd or yyyyMMddTHHmmssZ format, for example 20240131. |
Response
[
{}
]Update Zoho Calendar event
Update an existing Zoho Calendar event by ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
calendar_id | string | No | The Zoho calendar that has the event. |
event_id | string | No | The ID of the event to update. |
title | string | No | New title for the event. |
start_date_time | string | No | New start date and time in yyyyMMddTHHmmssZ format, for example 20241028T103000Z. |
end_date_time | string | No | New end date and time in yyyyMMddTHHmmssZ format, for example 20241028T113000Z. |
location | string | No | New location for the event. |
description | string | No | New description for the event. |
Response
{}