# Zoho Calendar Integration via LowCodeAPI
**Last Updated**: February 10, 2026
## Overview
Calendar application
**Categories:**
- {'id': 'zoho-suite', 'name': 'Zoho Suite'}
## Base Endpoint
https://api.lowcodeapi.com/zohocalendar
**Important**: Always include the provider name in the URL path after `api.lowcodeapi.com/`
## Authentication
**Type:** OAUTH2.0
**Official Documentation:** https://www.zoho.com/calendar/help/api/introduction.html
## URL Format (Important)
LowCodeAPI supports two URL formats. **Always try the New Format first**, then fall back to Old Format if needed.
### New Format (Priority)
- Path parameters stay in the URL path
- Do NOT include path parameters as query parameters
- Example: `https://api.lowcodeapi.com/{provider}/resource/{id}?api_token=XXX`
### Old Format (Fallback)
- Path parameters become query parameters
- Example: `https://api.lowcodeapi.com/{provider}/resource/id?id={id}&api_token=XXX`
### Decision Flow for AI Agents
1. Always use **New Format** first - keep path parameters in the URL path
2. If you get a 404 or error, try **Old Format** with sanitized path
3. Log which format worked for future requests to this provider
## API Categories
## Common Endpoints
### Activity logs
**Method:** GET
**LowCodeAPI Path:** /api/v1/organization/activity
**New Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/organization/activity?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/organization/activity?api_token=YOUR_API_TOKEN
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocalendar/api/v1/organization/activity?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/calendar/help/api/get-activity-logs.html
### Get calendar list
**Method:** GET
**LowCodeAPI Path:** /api/v1/calendars
**New Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars?api_token=YOUR_API_TOKEN
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocalendar/api/v1/calendars?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/calendar/help/api/get-calendar-list.html
### Get calendar details
**Method:** GET
**LowCodeAPI Path:** /api/v1/calendars/<CALENDAR_UID>|<default>|<primary>
**New Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<CALENDAR_UID>|<default>|<primary>?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/calendar_uid|default|primary?CALENDAR_UID={CALENDAR_UID}&default={default}&primary={primary}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| CALENDAR_UID | string | |
| default | string | |
| primary | string | |
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<CALENDAR_UID>|<default>|<primary>?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/calendar/help/api/get-calendar-details.html
### Create new calendar
**Method:** POST
**LowCodeAPI Path:** /api/v1/calendars
**New Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars?api_token=YOUR_API_TOKEN
**Example Request (New Format):**
```bash
curl -X POST 'https://api.lowcodeapi.com/zohocalendar/api/v1/calendars?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/calendar/help/api/post-create-calendar.html
### Update calendar
**Method:** PUT
**LowCodeAPI Path:** /api/v1/calendars/<calendaruid>
**New Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<calendaruid>?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/calendaruid?api_token=YOUR_API_TOKEN
**Example Request (New Format):**
```bash
curl -X PUT 'https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<calendaruid>?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/calendar/help/api/put-update-calendar.html
### Delete calendar
**Method:** DELETE
**LowCodeAPI Path:** /api/v1/calendars/<calendaruid>
**New Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<calendaruid>?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/calendaruid?api_token=YOUR_API_TOKEN
**Request Body:**
| Field | Type | Description |
|-------|------|-------------|
| calendaruid | string | |
**Example Request (New Format):**
```bash
curl -X DELETE 'https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<calendaruid>?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/calendar/help/api/delete-calendar.html
### Get events list
**Method:** GET
**LowCodeAPI Path:** /api/v1/calendars/<CALENDAR_UID>/events
**New Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<CALENDAR_UID>/events?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/calendar_uid/events?api_token=YOUR_API_TOKEN
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<CALENDAR_UID>/events?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/calendar/help/api/get-events-list.html
### Get event details
**Method:** GET
**LowCodeAPI Path:** /api/v1/calendars/<CALENDAR_UID>/events/<EVENT_UID>
**New Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<CALENDAR_UID>/events/<EVENT_UID>?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/calendar_uid/events/event_uid?api_token=YOUR_API_TOKEN
**Request Body:**
| Field | Type | Description |
|-------|------|-------------|
| "required" | true
}
} | |
| "text" | "Recurrence id in ics format" | |
| {
"recurrenceid" | {
"type" | |
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<CALENDAR_UID>/events/<EVENT_UID>?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/calendar/help/api/get-event-details.html
### Get attachment details
**Method:** GET
**LowCodeAPI Path:** /api/v1/calendars/<CAL_UID>/events/<EVENT_UID>/attachment/<FILE_ID>
**New Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<CAL_UID>/events/<EVENT_UID>/attachment/<FILE_ID>?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/cal_uid/events/event_uid/attachment/file_id?api_token=YOUR_API_TOKEN
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<CAL_UID>/events/<EVENT_UID>/attachment/<FILE_ID>?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/calendar/help/api/get-attachment-details.html
### Get group attendees details
**Method:** GET
**LowCodeAPI Path:** /api/v1/calendars/<CALENDAR_UID>/events/<EVENT_UID>/groupattendeestatus
**New Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<CALENDAR_UID>/events/<EVENT_UID>/groupattendeestatus?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/calendar_uid/events/event_uid/groupattendeestatus?api_token=YOUR_API_TOKEN
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocalendar/api/v1/calendars/<CALENDAR_UID>/events/<EVENT_UID>/groupattendeestatus?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/calendar/help/api/get-group-attendees-details.html
## Usage Examples
### Example 1: Basic API Request (New Format)
Making a simple GET request to retrieve resources:
```bash
# Get a list of resources - no path parameters needed
curl -X GET "https://api.lowcodeapi.com/zohocalendar/endpoint?api_token=YOUR_API_TOKEN"
```
### Example 2: Request with Path Parameters (New Format)
Retrieving a specific resource using its ID:
```bash
# Get specific resource by ID - replace RESOURCE_ID with actual ID from previous response
curl -X GET "https://api.lowcodeapi.com/zohocalendar/endpoint/{RESOURCE_ID}?api_token=YOUR_API_TOKEN"
# Note: RESOURCE_ID typically comes from a previous list request or from the provider dashboard
```
### Example 3: POST Request with Body (New Format)
Creating a new resource:
```bash
# Create a new resource
curl -X POST "https://api.lowcodeapi.com/zohocalendar/endpoint?api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"field": "value", "another_field": "another_value"}'
```
## Error Handling
LowCodeAPI returns standard HTTP status codes. Common errors:
| Status Code | Description |
|-------------|-------------|
| 200 | Success - Request completed successfully |
| 400 | Bad Request - Invalid parameters or request body |
| 401 | Unauthorized - Invalid or missing API token |
| 403 | Forbidden - Insufficient permissions |
| 404 | Not Found - Endpoint or resource doesn't exist |
| 429 | Too Many Requests - Rate limit exceeded |
| 500 | Server Error - Provider API error |
All error responses include error details:
```json
{
"data": {
"error": {
"message": "Error description",
"code": "ERROR_CODE"
}
}
}
```
## Complete Endpoint Reference
| Endpoint | Method | Category |
|----------|--------|----------|
| Activity logs | GET | Activity logs |
| Get calendar list | GET | Calendars API |
| Get calendar details | GET | Calendars API |
| Create new calendar | POST | Calendars API |
| Update calendar | PUT | Calendars API |
| Delete calendar | DELETE | Calendars API |
| Get events list | GET | Events API |
| Get event details | GET | Events API |
| Get attachment details | GET | Events API |
| Get group attendees details | GET | Events API |
| Get Event By Instance | GET | Events API |
| Create a new event | POST | Events API |
| Attach file | POST | Events API |
| Delete attachment | PUT | Events API |
| Delete event | DELETE | Events API |
| Move event | PUT | Events API |
| Get user's free/ busy details | GET | Free/ Busy API |
| Get Group Calendar list | GET | Groups API |
| Get notification details | GET | Notification API |
| Update notification details | PUT | Notification API |
| Get event through search | GET | Search API |
| Get calendar settings | GET | Settings API |
| Update calendar settings | PUT | Settings API |
| Get shared calendar details | GET | Share API |
| Share calendar | PUT | Share API |
| Create event using Smart Add | POST | Smart Add API |
## API Definition Endpoints
You can fetch the complete API specification for this provider:
**New Format (OpenAPI spec):**
```bash
curl 'https://backend.lowcodeapi.com/zohocalendar/openapi'
```
**Old Format (API definition):**
```bash
curl 'https://backend.lowcodeapi.com/zohocalendar/definition'
```
## Response Format
All responses are wrapped in a `data` key:
```json
{
"data": {
// Actual response from provider (object or array)
}
}
```