Lodol Docs

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

ParameterTypeRequiredDescription
calendar_idstringNoThe Zoho calendar to add the event to.
titlestringNoEvent title.
start_date_timestringNoEvent start date and time in yyyyMMddTHHmmssZ format, for example 20241028T103000Z.
end_date_timestringNoEvent end date and time in yyyyMMddTHHmmssZ format, for example 20241028T113000Z.
locationstringNoEvent location (optional).
descriptionstringNoEvent description (optional).

Response

{}

Delete Zoho Calendar event

Delete a Zoho Calendar event by its ID.

Parameters

ParameterTypeRequiredDescription
calendar_idstringNoThe Zoho calendar that has the event.
event_idstringNoThe 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

ParameterTypeRequiredDescription
calendar_idstringNoThe Zoho calendar to list events from.
start_datestringNoList events on or after this date, in yyyyMMdd or yyyyMMddTHHmmssZ format, for example 20240101.
end_datestringNoList 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

ParameterTypeRequiredDescription
calendar_idstringNoThe Zoho calendar that has the event.
event_idstringNoThe ID of the event to update.
titlestringNoNew title for the event.
start_date_timestringNoNew start date and time in yyyyMMddTHHmmssZ format, for example 20241028T103000Z.
end_date_timestringNoNew end date and time in yyyyMMddTHHmmssZ format, for example 20241028T113000Z.
locationstringNoNew location for the event.
descriptionstringNoNew description for the event.

Response

{}

On this page