# Zoho Campaigns Integration via LowCodeAPI

**Last Updated**: February 10, 2026

## Overview
Email marketing

**Categories:**
- {'id': 'crm-marketing', 'name': 'CRM & Marketing'}

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

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

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

**Official Documentation:** https://www.zoho.com/campaigns/help/developers/

## 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

### Campaign Details

**Method:** GET
**LowCodeAPI Path:** /api/v1.1/getcampaigndetails

**New Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/getcampaigndetails?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/getcampaigndetails?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| campaignkey | string |  |
| campaigntype | string |  |
| resfmt | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohocampaigns/api/v1.1/getcampaigndetails?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/campaigns/help/developers/campaign-details.html

### Create Campaign

**Method:** POST
**LowCodeAPI Path:** /api/v1.1/createCampaign

**New Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/createCampaign?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/createcampaign?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| campaignname | string |  |
| content_url | string |  |
| from_email | string |  |
| list_details | object |  |
| resfmt | string |  |
| subject | string |  |
| topicId | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohocampaigns/api/v1.1/createCampaign?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/campaigns/help/developers/create-campaign.html

### Schedule Campaign

**Method:** POST
**LowCodeAPI Path:** /api/v1.1/sendcampaign

**New Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/sendcampaign?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/sendcampaign?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| am_pm | string |  |
| campaignkey | string |  |
| istimewarp | boolean |  |
| resfmt | string |  |
| scheduledate | string |  |
| schedulehour | number |  |
| scheduleminute | number |  |
| sendingTZ | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohocampaigns/api/v1.1/sendcampaign?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/campaigns/help/developers/schedule-campaign.html

### Clone Campaign

**Method:** POST
**LowCodeAPI Path:** /api/v1.1/type/clonecampaign

**New Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/type/clonecampaign?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/type/clonecampaign?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| campaigninfo | object |  |
| resfmt | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohocampaigns/api/v1.1/type/clonecampaign?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/campaigns/help/developers/clone-campaign.html

### Campaign Reports

**Method:** GET
**LowCodeAPI Path:** /api/v1.1/campaignreports

**New Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/campaignreports?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/campaignreports?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| campaignkey | string |  |
| resfmt | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohocampaigns/api/v1.1/campaignreports?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://zoho.com/campaigns/help/developers/campaign-reports.html

### Recent Campaigns

**Method:** GET
**LowCodeAPI Path:** /api/v1.1/recentcampaigns

**New Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/recentcampaigns?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/recentcampaigns?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| fromindex | number |  |
| range | number |  |
| resfmt | string |  |
| sort | string |  |
| status | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohocampaigns/api/v1.1/recentcampaigns?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/campaigns/help/developers/recent-campaign.html

### Recently Sent Campaigns

**Method:** GET
**LowCodeAPI Path:** /api/v1.1/recentsentcampaigns

**New Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/recentsentcampaigns?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/recentsentcampaigns?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| limit | number |  |
| resfmt | string |  |
| version | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohocampaigns/api/v1.1/recentsentcampaigns?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/campaigns/help/developers/recently-sent-campaign.html

### Last Campaign Report

**Method:** POST
**LowCodeAPI Path:** /api/v1.1/getlastcampaignreport

**New Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/getlastcampaignreport?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/getlastcampaignreport?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| resfmt | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohocampaigns/api/v1.1/getlastcampaignreport?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/campaigns/help/developers/last-campaign-report.html

### Get Campaign Recipients Data

**Method:** POST
**LowCodeAPI Path:** /api/v1.1/getcampaignrecipientsdata

**New Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/getcampaignrecipientsdata?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/getcampaignrecipientsdata?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| action | string |  |
| campaignkey | string |  |
| resfmt | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohocampaigns/api/v1.1/getcampaignrecipientsdata?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/campaigns/help/developers/campaign-recipient-data.html

### View Coupon Details

**Method:** GET
**LowCodeAPI Path:** /api/v1.1/coupon/coupondetails

**New Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/coupon/coupondetails?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohocampaigns/api/v1.1/coupon/coupondetails?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| type | string |  |
| couponCode | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohocampaigns/api/v1.1/coupon/coupondetails?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/campaigns/help/developers/view-coupon-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/zohocampaigns/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/zohocampaigns/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/zohocampaigns/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 |
|----------|--------|----------|
| Campaign Details | GET | Campaign Management |
| Create Campaign | POST | Campaign Management |
| Schedule Campaign | POST | Campaign Management |
| Clone Campaign | POST | Campaign Management |
| Campaign Reports | GET | Campaign Management |
| Recent Campaigns | GET | Campaign Management |
| Recently Sent Campaigns | GET | Campaign Management |
| Last Campaign Report | POST | Campaign Management |
| Get Campaign Recipients Data | POST | Campaign Management |
| View Coupon Details | GET | Campaign Management |
| Change Coupon Status | POST | Campaign Management |
| Delete Campaign | POST | Campaign Management |
| Get List Advanced Details | GET | List Management |
| Get Mailing Lists | POST | List Management |
| Get List Contacts | GET | List Management |
| Get All Contact Fields | POST | List Management |
| Get Segment Details | POST | List Management |
| Get Segment Contacts | GET | List Management |
| Update List | GET | List Management |
| Delete Mailing List | POST | List Management |
| Total Contacts | GET | List Management |
| Subscribe | POST | List Management |
| Unsubscribe | POST | List Management |
| Move to Do-Not-Mail | POST | List Management |
| Add Contacts in Existing List | POST | List Management |
| Add New List and Contacts | POST | List Management |
| Create Custom Fields | POST | List Management |
| Create Merge Tags | POST | List Management |
| Create Topics | POST | Topic Management |
| Get Topics | GET | Topic Management |
| Get Product | GET | Topic Management |
| Get open custom workflows | GET | Workflow Management |
| Trigger contacts | POST | Workflow Management |

## API Definition Endpoints

You can fetch the complete API specification for this provider:

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

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

## Response Format

All responses are wrapped in a `data` key:

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