Lodol Docs

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

ParameterTypeRequiredDescription
calendar_idstringNoTarget Zoho calendar ID.
titlestringNoEvent title.
start_date_timestringNoEvent start datetime in yyyyMMddTHHmmssZ format (e.g. 20241028T103000Z).
end_date_timestringNoEvent end datetime in yyyyMMddTHHmmssZ format (e.g. 20241028T113000Z).
locationstringNoEvent location (optional).
descriptionstringNoEvent description (optional).

Response

{}

Delete a Zoho Calendar event.

Delete a Zoho Calendar event by its ID.

Parameters

ParameterTypeRequiredDescription
calendar_idstringNoTarget Zoho calendar ID.
event_idstringNoZoho 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

ParameterTypeRequiredDescription
calendar_idstringNoTarget Zoho calendar ID.
start_datestringNoOptional start date in yyyyMMdd or yyyyMMddTHHmmssZ format (e.g. 20240101).
end_datestringNoOptional 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

ParameterTypeRequiredDescription
calendar_idstringNoTarget Zoho calendar ID.
event_idstringNoZoho event ID to update.
titlestringNoUpdated title (optional).
start_date_timestringNoUpdated start datetime in yyyyMMddTHHmmssZ format (e.g. 20241028T103000Z).
end_date_timestringNoUpdated end datetime in yyyyMMddTHHmmssZ format (e.g. 20241028T113000Z).
locationstringNoUpdated location (optional).
descriptionstringNoUpdated description (optional).

Response

{}

On this page