# Zoho Marketing  Integration via LowCodeAPI

**Last Updated**: February 10, 2026

## Overview
Marketing automation

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

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

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

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

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

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

**Method:** GET
**LowCodeAPI Path:** {endpoint}/api/v1/getcampaigndetails

**New Format URL:**
https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/getcampaigndetails?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohomarketing/api/v1/getcampaigndetails?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/zohomarketing{endpoint}/api/v1/getcampaigndetails?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/marketingautomation/help/developers/campaign-reports.htm

### Campaign reports

**Method:** POST
**LowCodeAPI Path:** {endpoint}/api/v1/getcampaigndetails

**New Format URL:**
https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/getcampaigndetails?api_token=YOUR_API_TOKEN

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

**Request Body:**

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

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/getcampaigndetails?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/marketingautomation/help/developers/campaign-reports.htm

### Create Campaign

**Method:** POST
**LowCodeAPI Path:** {endpoint}/api/v1/createCampaign

**New Format URL:**
https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/createCampaign?api_token=YOUR_API_TOKEN

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

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| campaignkey | string |  |
| content_url | string |  |
| from_emai | string |  |
| list_details | object |  |
| resfmt | string |  |
| subject | string |  |
| topicId | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/createCampaign?api_token=YOUR_API_TOKEN'
```

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

### Schedule campaign

**Method:** POST
**LowCodeAPI Path:** {endpoint}/api/v1/sendcampaign

**New Format URL:**
https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/sendcampaign?api_token=YOUR_API_TOKEN

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

**Request Body:**

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

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/sendcampaign?api_token=YOUR_API_TOKEN'
```

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

### Clone campaign

**Method:** GET
**LowCodeAPI Path:** {endpoint}/api/v1/json/clonecampaign

**New Format URL:**
https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/json/clonecampaign?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohomarketing/api/v1/json/clonecampaign?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| campaigninfo | json |  |
| resfmt | string |  |
| version | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/json/clonecampaign?api_token=YOUR_API_TOKEN'
```

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

### Clone campaign

**Method:** POST
**LowCodeAPI Path:** {endpoint}/api/v1/json/clonecampaign

**New Format URL:**
https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/json/clonecampaign?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohomarketing/api/v1/json/clonecampaign?api_token=YOUR_API_TOKEN

**Request Body:**

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

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/json/clonecampaign?api_token=YOUR_API_TOKEN'
```

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

### Recent campaigns

**Method:** GET
**LowCodeAPI Path:** {endpoint}/api/v1/recentcampaigns

**New Format URL:**
https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/recentcampaigns?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohomarketing/api/v1/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/zohomarketing{endpoint}/api/v1/recentcampaigns?api_token=YOUR_API_TOKEN'
```

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

### Recent campaigns

**Method:** POST
**LowCodeAPI Path:** {endpoint}/api/v1/recentcampaigns

**New Format URL:**
https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/recentcampaigns?api_token=YOUR_API_TOKEN

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

**Request Body:**

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

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/recentcampaigns?api_token=YOUR_API_TOKEN'
```

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

### Recently sent campaigns

**Method:** GET
**LowCodeAPI Path:** {endpoint}/api/v1/recentsentcampaigns

**New Format URL:**
https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/recentsentcampaigns?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohomarketing/api/v1/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/zohomarketing{endpoint}/api/v1/recentsentcampaigns?api_token=YOUR_API_TOKEN'
```

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

### Get Last campaign report

**Method:** POST
**LowCodeAPI Path:** {endpoint}/api/v1/getlastcampaignreport

**New Format URL:**
https://api.lowcodeapi.com/zohomarketing{endpoint}/api/v1/getlastcampaignreport?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohomarketing/api/v1/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/zohomarketing{endpoint}/api/v1/getlastcampaignreport?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/marketingautomation/help/developers/last-campaign-report.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/zohomarketing/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/zohomarketing/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/zohomarketing/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 reports | GET | Campaign Management APIs |
| Campaign reports | POST | Campaign Management APIs |
| Create Campaign | POST | Campaign Management APIs |
| Schedule campaign | POST | Campaign Management APIs |
| Clone campaign | GET | Campaign Management APIs |
| Clone campaign | POST | Campaign Management APIs |
| Recent campaigns | GET | Campaign Management APIs |
| Recent campaigns | POST | Campaign Management APIs |
| Recently sent campaigns | GET | Campaign Management APIs |
| Get Last campaign report | POST | Campaign Management APIs |
| Get campaign recipients' data | POST | Campaign Management APIs |
| View Coupon Details | GET | Campaign Management APIs |
| View Coupon Details | POST | Campaign Management APIs |
| Change coupon status | GET | Campaign Management APIs |
| Change coupon status | POST | Campaign Management APIs |
| Delete Campaign | GET | Campaign Management APIs |
| Delete Campaign | POST | Campaign Management APIs |
| Get open journeys | GET | Journey Management API |
| Trigger leads | POST | Journey Management API |
| Get mailing lists | POST | Lead Management APIs |
| Get list advanced details | GET | Lead Management APIs |
| Get list advanced details | POST | Lead Management APIs |
| Get list leads | GET | Lead Management APIs |
| Get list leads | POST | Lead Management APIs |
| Get all lead fields | GET | Lead Management APIs |
| Get segment details | GET | Lead Management APIs |
| Get segment leads | POST | Lead Management APIs |
| Update List | POST | Lead Management APIs |
| Delete mailing list | GET | Lead Management APIs |
| Delete mailing list | POST | Lead Management APIs |
| Delete Lead Tags | POST | Lead Management APIs |
| Total leads | GET | Lead Management APIs |
| Subscribe | POST | Lead Management APIs |
| Unsubscribe | POST | Lead Management APIs |
| Move to Do-Not-Mail | POST | Lead Management APIs |
| Untag leads | POST | Lead Management APIs |
| Add New List and Leads | POST | Lead Management APIs |
| Add leads in existing list | POST | Lead Management APIs |
| Assign lead tags | POST | Lead Management APIs |
| Create custom fields | POST | Lead Management APIs |
| Create merge tags | POST | Lead Management APIs |
| Create lead tags | POST | Lead Management APIs |
| Get Topics | GET | Topic Management API |
| Get Product | GET | Topic Management API |
| Get all domains | GET | Web Assistant APIs |
| Get tracking code | GET | Web Assistant APIs |

## API Definition Endpoints

You can fetch the complete API specification for this provider:

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

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

## Response Format

All responses are wrapped in a `data` key:

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