# Zoho Connect Integration via LowCodeAPI

**Last Updated**: February 10, 2026

## Overview
Integration platform

**Categories:**
- {'id': 'zoho-suite', 'name': 'Zoho Suite'}

## Base Endpoint
https://api.lowcodeapi.com/zohoconnect

**Important**: Always include the provider name in the URL path after `api.lowcodeapi.com/`

## Authentication
**Type:** OAUTH2.0

**Official Documentation:** https://www.zoho.com/connect/api/intro.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

### Create Event

**Method:** POST
**LowCodeAPI Path:** /pulse/api/addEvent

**New Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/addEvent?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/addevent?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| allDay | string |  |
| desc | string |  |
| endDate | string |  |
| endHour | string |  |
| endMin | string |  |
| endMonth | string |  |
| endYear | string |  |
| fields | string |  |
| intervalDay | string |  |
| intervalHour | string |  |
| intervalMinute | string |  |
| invitedGroups | string |  |
| invitedMembers | string |  |
| location | string |  |
| partitionId | string |  |
| scopeID | string |  |
| startDate | string |  |
| startHour | string |  |
| startMin | string |  |
| startMonth | string |  |
| startYear | string |  |
| title | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohoconnect/pulse/api/addEvent?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/connect/api/create-event.html

### Add Event Attendees

**Method:** POST
**LowCodeAPI Path:** /pulse/api/addEventInvitees

**New Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/addEventInvitees?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/addeventinvitees?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| invitedGroups | string |  |
| invitedMembers | string |  |
| scopeID | string |  |
| streamId  | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohoconnect/pulse/api/addEventInvitees?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/connect/api/add-event-invitees.html

### Add Event Reminder

**Method:** POST
**LowCodeAPI Path:** /pulse/api/addEventReminder

**New Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/addEventReminder?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/addeventreminder?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| intervalDay | string |  |
| intervalHour | string |  |
| intervalMinute | string |  |
| scopeID | string |  |
| streamId | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohoconnect/pulse/api/addEventReminder?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/connect/api/add-event-reminder.html

### Delete Event

**Method:** DELETE
**LowCodeAPI Path:** /pulse/api/deleteEvent

**New Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/deleteEvent?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/deleteevent?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| scopeID | string |  |
| streamId | string |  |

**Example Request (New Format):**

```bash
curl -X DELETE 'https://api.lowcodeapi.com/zohoconnect/pulse/api/deleteEvent?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/connect/api/delete-event.html

### Get upcoming events

**Method:** GET
**LowCodeAPI Path:** /pulse/api/upcomingEvents

**New Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/upcomingEvents?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/upcomingevents?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| endTime | string |  |
| partitionId | string |  |
| partitionType | string |  |
| partitionUrl | string |  |
| scopeID | string |  |
| selectedPartIds | string |  |
| sharedWithMe | string |  |
| startTime | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohoconnect/pulse/api/upcomingEvents?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/connect/api/get-upcoming-events.html

### Remove Event Reminder

**Method:** DELETE
**LowCodeAPI Path:** /pulse/api/deleteEventReminder

**New Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/deleteEventReminder?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/deleteeventreminder?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| scopeID | string |  |
| streamId | string |  |

**Example Request (New Format):**

```bash
curl -X DELETE 'https://api.lowcodeapi.com/zohoconnect/pulse/api/deleteEventReminder?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/connect/api/remove-event-reminder.html

### Removing event attendees

**Method:** DELETE
**LowCodeAPI Path:** /pulse/api/deleteEventInvitees

**New Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/deleteEventInvitees?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/deleteeventinvitees?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| invitedGroups | string |  |
| invitedMembers | string |  |
| scopeID | string |  |
| streamId | string |  |

**Example Request (New Format):**

```bash
curl -X DELETE 'https://api.lowcodeapi.com/zohoconnect/pulse/api/deleteEventInvitees?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/connect/api/remove-event-attendees.html

### Update Event

**Method:** PUT
**LowCodeAPI Path:** /pulse/api/updateEvent

**New Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/updateEvent?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/updateevent?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| allDay | string |  |
| deleteGrpInvitees | string |  |
| deleteMemInvitees | string |  |
| desc | string |  |
| endDate | string |  |
| endHour | string |  |
| endMin | string |  |
| endMonth | string |  |
| endYear | string |  |
| fields | string |  |
| intervalDay | string |  |
| intervalHour | string |  |
| intervalMinute | string |  |
| invitedGroups | string |  |
| invitedMembers | string |  |
| location | string |  |
| scopeID | string |  |
| startDate | string |  |
| startHour | string |  |
| startMin | string |  |
| startMonth | string |  |
| startYear | string |  |
| streamId | string |  |
| title | string |  |

**Example Request (New Format):**

```bash
curl -X PUT 'https://api.lowcodeapi.com/zohoconnect/pulse/api/updateEvent?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/connect/api/update-event.html

### Create an Announcement

**Method:** POST
**LowCodeAPI Path:** /pulse/api/v2/addStream

**New Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/v2/addStream?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/v2/addstream?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| expiryDate | string |  |
| expiryMonth | string |  |
| expiryYear | string |  |
| fileIds | string |  |
| isAnnouncement | string |  |
| partitionID | string |  |
| scopeID | string |  |
| streamContent | string |  |
| streamTitle | string |  |
| streamType | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohoconnect/pulse/api/v2/addStream?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/connect/api/create-announcement.html

### Creating a Poll

**Method:** POST
**LowCodeAPI Path:** /pulse/api/addPoll

**New Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/addPoll?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohoconnect/pulse/api/addpoll?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| allowMultiple  | string |  |
| canDeclareResult | string |  |
| canEditVote | string |  |
| endDate | string |  |
| endHour | string |  |
| endMin | string |  |
| endMonth | string |  |
| endYear | string |  |
| imageIds  | string |  |
| partition | string |  |
| question  | string |  |
| scopeID | string |  |
| textOptions | string |  |
| voteDisplayType | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohoconnect/pulse/api/addPoll?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/connect/api/create-poll.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/zohoconnect/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/zohoconnect/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/zohoconnect/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 |
|----------|--------|----------|
| Create Event | POST | Events |
| Add Event Attendees | POST | Events |
| Add Event Reminder | POST | Events |
| Delete Event | DELETE | Events |
| Get upcoming events | GET | Events |
| Remove Event Reminder | DELETE | Events |
| Removing event attendees | DELETE | Events |
| Update Event | PUT | Events |
| Create an Announcement | POST | Feeds |
| Creating a Poll | POST | Feeds |
| Get Single Feed | GET | Feeds |
| Adding a Comment | POST | Feeds |
| Delete a Feed | DELETE | Feeds |
| Fetch Feeds by ID | GET | Feeds |
| Get feeds from My Feed | GET | Feeds |
| Get Latest Comment | GET | Feeds |
| Get Latest Group Feeds | GET | Feeds |
| Get My Feed & Group Feed | GET | Feeds |
| Get poll results | POST | Feeds |
| Update Feed & Poll Preferences | PUT | Feeds |
| Create a Forum Post | POST | Forums |
| Get Recent Forums | GET | Forums |
| Publish a Forum | POST | Forums |
| Update a Forum | PUT | Forums |
| Get all Groups | GET | Groups |
| Creat a Group | POST | Groups |
| Update Group Details | PUT | Groups |
| Join a Group | POST | Groups |
| Leave Group | DELETE | Groups |
| Add User Role in a Group | POST | Groups |
| Change User Role in a Group | POST | Groups |
| Remove User from a Group | DELETE | Groups |
| Archive & Un-archive a Group | POST | Groups |
| Delete Group | DELETE | Groups |
| Get My Manuals | GET | Manuals |
| Get My Articles | GET | Manuals |
| Publish a Manual | POST | Manuals |
| Get Group Articals | GET | Manuals |
| Get Group Manuals | GET | Manuals |
| Get User Following Articles | GET | Manuals |
| Publish an Article | POST | Manuals |
| Get all Networks | GET | Network |
| Get all network members | GET | Network |
| Invite users to a network | POST | Network |
| Delete User from an External Network | POST | Network |
| Create a board | POST | Tasks & Boards |
| Add Members to a Board | POST | Tasks & Boards |
| Delete Board Member | DELETE | Tasks & Boards |
| Updating a Board | PUT | Tasks & Boards |
| Delete a Board | DELETE | Tasks & Boards |
| Create a Task | POST | Tasks & Boards |
| Add Section to a Board | PUT | Tasks & Boards |
| Delete Board Section | DELETE | Tasks & Boards |
| Delete Task | DELETE | Tasks & Boards |
| Get Board Section | GET | Tasks & Boards |
| Get my Boards | GET | Tasks & Boards |
| Update Board Section | PUT | Tasks & Boards |
| Update a Task | POST | Tasks & Boards |
| Get User Activity | GET | User |
| Get User Feed | GET | User |
| Get User Groups | GET | User |

## API Definition Endpoints

You can fetch the complete API specification for this provider:

**New Format (OpenAPI spec):**
```bash
curl 'https://backend.lowcodeapi.com/zohoconnect/openapi'
```

**Old Format (API definition):**
```bash
curl 'https://backend.lowcodeapi.com/zohoconnect/definition'
```

## Response Format

All responses are wrapped in a `data` key:

```json
{
  "data": {
    // Actual response from provider (object or array)
  }
}
```