# Zoho Bookings Integration via LowCodeAPI

**Last Updated**: February 10, 2026

## Overview
Appointment scheduling

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

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

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

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

**Official Documentation:** https://www.zoho.com/bookings/help/api/v1/generate-accesstoken.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

### Book Appointment

**Method:** POST
**LowCodeAPI Path:** /bookings/v1/json/appointment

**New Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/appointment?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/appointment?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| additional_fields | object |  |
| customer_details | string |  |
| from_time | string |  |
| group_id | number |  |
| resource_id | number |  |
| service_id | number |  |
| staff_id | number |  |
| time_zone | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohobookings/bookings/v1/json/appointment?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/bookings/help/api/v1/book-appointment.html

### Get Appointment

**Method:** GET
**LowCodeAPI Path:** /bookings/v1/json/getappointment

**New Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/getappointment?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/getappointment?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| booking_id | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohobookings/bookings/v1/json/getappointment?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/bookings/help/api/v1/get-appointment.html

### Update Appointment

**Method:** POST
**LowCodeAPI Path:** /bookings/v1/json/updateappointment

**New Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/updateappointment?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/updateappointment?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| action | string |  |
| booking_id | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohobookings/bookings/v1/json/updateappointment?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/bookings/help/api/v1/update-appointment.html

### Reschedule Appointment

**Method:** POST
**LowCodeAPI Path:** /bookings/v1/json/rescheduleappointment

**New Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/rescheduleappointment?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/rescheduleappointment?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| booking_id | string |  |
| group_id | string |  |
| staff_id | string |  |
| start_time | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohobookings/bookings/v1/json/rescheduleappointment?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/bookings/help/api/v1/reschedule-appointment.html

### Fetch Availability

**Method:** GET
**LowCodeAPI Path:** /bookings/v1/json/availableslots

**New Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/availableslots?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/availableslots?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| from_time | string |  |
| group_id | string |  |
| selected_date | string |  |
| service_id | string |  |
| staff_id | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohobookings/bookings/v1/json/availableslots?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/bookings/help/api/v1/fetch-availability.html

### Add Staff

**Method:** POST
**LowCodeAPI Path:** /bookings/v1/json/addstaff

**New Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/addstaff?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/addstaff?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| additional_info | string |  |
| assigned_services | string |  |
| designation | string |  |
| dob | string |  |
| email | string |  |
| gender | string |  |
| name | string |  |
| phone | string |  |
| role | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/zohobookings/bookings/v1/json/addstaff?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/bookings/help/api/v1/add-staff.html

### Fetch Services

**Method:** GET
**LowCodeAPI Path:** /bookings/v1/json/services

**New Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/services?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/services?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| service_id | string |  |
| staff_id | string |  |
| workspace_id | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohobookings/bookings/v1/json/services?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/bookings/help/api/v1/fetch-services.html

### Fetch Staff

**Method:** GET
**LowCodeAPI Path:** /bookings/v1/json/staffs

**New Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/staffs?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/staffs?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| service_id | string |  |
| staff_id | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohobookings/bookings/v1/json/staffs?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/bookings/help/api/v1/fetch-staff.html

### Fetch Workspaces

**Method:** GET
**LowCodeAPI Path:** /bookings/v1/json/workspaces

**New Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/workspaces?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/workspaces?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| workspace_id | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohobookings/bookings/v1/json/workspaces?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/bookings/help/api/v1/fetch-workspaces.html

### Fetch Resources

**Method:** GET
**LowCodeAPI Path:** /bookings/v1/json/resources

**New Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/resources?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/zohobookings/bookings/v1/json/resources?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| resource_id | string |  |
| service_id | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/zohobookings/bookings/v1/json/resources?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.zoho.com/bookings/help/api/v1/fetch-resources.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/zohobookings/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/zohobookings/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/zohobookings/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 |
|----------|--------|----------|
| Book Appointment | POST | Bookings |
| Get Appointment | GET | Bookings |
| Update Appointment | POST | Bookings |
| Reschedule Appointment | POST | Bookings |
| Fetch Availability | GET | Bookings |
| Add Staff | POST | Bookings |
| Fetch Services | GET | Bookings |
| Fetch Staff | GET | Bookings |
| Fetch Workspaces | GET | Bookings |
| Fetch Resources | GET | Bookings |

## API Definition Endpoints

You can fetch the complete API specification for this provider:

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

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

## Response Format

All responses are wrapped in a `data` key:

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