Zoho Calendar
API actions for the Zoho Calendar integration.
Zoho Calendar
View and manage events in Zoho Calendar using an OAuth token.
Create a Zoho Calendar event.
Create an event on a Zoho calendar with the provided details.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
calendar_id | string | No | Target Zoho calendar ID. |
title | string | No | Event title. |
start_date_time | string | No | Event start datetime in yyyyMMddTHHmmssZ format (e.g. 20241028T103000Z). |
end_date_time | string | No | Event end datetime in yyyyMMddTHHmmssZ format (e.g. 20241028T113000Z). |
location | string | No | Event location (optional). |
description | string | No | Event description (optional). |
Response
{}Delete a Zoho Calendar event.
Delete a Zoho Calendar event by its ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
calendar_id | string | No | Target Zoho calendar ID. |
event_id | string | No | Zoho event ID to delete. |
Response
{}List Zoho calendars.
Fetch all calendars available to the authenticated 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 | Target Zoho calendar ID. |
start_date | string | No | Optional start date in yyyyMMdd or yyyyMMddTHHmmssZ format (e.g. 20240101). |
end_date | string | No | Optional end date in yyyyMMdd or yyyyMMddTHHmmssZ format (e.g. 20240131). |
Response
[
{}
]Update a Zoho Calendar event.
Update an existing Zoho Calendar event by ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
calendar_id | string | No | Target Zoho calendar ID. |
event_id | string | No | Zoho event ID to update. |
title | string | No | Updated title (optional). |
start_date_time | string | No | Updated start datetime in yyyyMMddTHHmmssZ format (e.g. 20241028T103000Z). |
end_date_time | string | No | Updated end datetime in yyyyMMddTHHmmssZ format (e.g. 20241028T113000Z). |
location | string | No | Updated location (optional). |
description | string | No | Updated description (optional). |
Response
{}