# Zoho Contracts Integration via LowCodeAPI
**Last Updated**: February 10, 2026
## Overview
Contract management
**Categories:**
- {'id': 'zoho-suite', 'name': 'Zoho Suite'}
## Base Endpoint
https://api.lowcodeapi.com/zohocontracts
**Important**: Always include the provider name in the URL path after `api.lowcodeapi.com/`
## Authentication
**Type:** OAUTH2.0
**Official Documentation:** https://www.zoho.com/contracts/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
### Get Collaborators
**Method:** GET
**LowCodeAPI Path:** /api/v1/contracts/{contract_api_name}/collaborators
**New Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/contracts/{contract_api_name}/collaborators?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/contracts/contract_api_name/collaborators?contract_api_name={contract_api_name}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| contract_api_name | string | |
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocontracts/api/v1/contracts/{contract_api_name}/collaborators?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/contracts/api/collaborators/get-collaborators.html
### Create Collaborators
**Method:** POST
**LowCodeAPI Path:** /api/v1/contracts/{contract_api_name}/collaborators
**New Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/contracts/{contract_api_name}/collaborators?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/contracts/contract_api_name/collaborators?contract_api_name={contract_api_name}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| contract_api_name | string | |
**Request Body:**
| Field | Type | Description |
|-------|------|-------------|
| id | string | |
| message | string | |
| notify | boolean | |
| permissions | number | |
| user | array | |
**Example Request (New Format):**
```bash
curl -X POST 'https://api.lowcodeapi.com/zohocontracts/api/v1/contracts/{contract_api_name}/collaborators?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/contracts/api/collaborators/create-collaborators.html
### Update Collaborators
**Method:** PUT
**LowCodeAPI Path:** /api/v1/contracts/{contract_api_name}/collaborators
**New Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/contracts/{contract_api_name}/collaborators?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/contracts/contract_api_name/collaborators?contract_api_name={contract_api_name}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| contract_api_name | string | |
**Request Body:**
| Field | Type | Description |
|-------|------|-------------|
| id | string | |
| permissions | number | |
**Example Request (New Format):**
```bash
curl -X PUT 'https://api.lowcodeapi.com/zohocontracts/api/v1/contracts/{contract_api_name}/collaborators?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/contracts/api/collaborators/update-collaborators.html
### Delete Collaborator
**Method:** DELETE
**LowCodeAPI Path:** /api/v1/contracts/{contract_api_name}/users/{user_id}/collaborators
**New Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/contracts/{contract_api_name}/users/{user_id}/collaborators?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/contracts/contract_api_name/users/user_id/collaborators?contract_api_name={contract_api_name}&user_id={user_id}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| contract_api_name | string | |
| user_id | string | |
**Example Request (New Format):**
```bash
curl -X DELETE 'https://api.lowcodeapi.com/zohocontracts/api/v1/contracts/{contract_api_name}/users/{user_id}/collaborators?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/contracts/api/collaborators/delete-collaborator.html
### Get Contract Type
**Method:** GET
**LowCodeAPI Path:** /api/v1/contracttypes/{api_name}
**New Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/contracttypes/{api_name}?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/contracttypes/api_name?api_name={api_name}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| api_name | string | |
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocontracts/api/v1/contracttypes/{api_name}?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/contracts/api/contract-type/get-contract-type.html
### Get Contract Type using Admin privilege
**Method:** GET
**LowCodeAPI Path:** /api/v1/admin/contracttypes/{api_name}
**New Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/admin/contracttypes/{api_name}?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/admin/contracttypes/api_name?api_name={api_name}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| api_name | string | |
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocontracts/api/v1/admin/contracttypes/{api_name}?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/contracts/api/contract-type/get-contract-type-admin-privilege.html
### Get Contract Types List
**Method:** GET
**LowCodeAPI Path:** /api/v1/contracttypes
**New Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/contracttypes?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/contracttypes?api_token=YOUR_API_TOKEN
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocontracts/api/v1/contracttypes?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/contracts/api/contract-type/get-contract-types-list.html
### Get Contract Types List using Admin privilege
**Method:** GET
**LowCodeAPI Path:** /api/v1/admin/contracttypes
**New Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/admin/contracttypes?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/admin/contracttypes?api_token=YOUR_API_TOKEN
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocontracts/api/v1/admin/contracttypes?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/contracts/api/contract-type/get-contract-types-list-admin-privilege.html
### Get Contract Type Template Fields
**Method:** GET
**LowCodeAPI Path:** /api/v1/admin/contracttypes/master-services-agreement/fields
**New Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/admin/contracttypes/master-services-agreement/fields?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/admin/contracttypes/master-services-agreement/fields?api_token=YOUR_API_TOKEN
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/zohocontracts/api/v1/admin/contracttypes/master-services-agreement/fields?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/contracts/api/get-contract-type-template-fields.html
### Create Contract Type
**Method:** POST
**LowCodeAPI Path:** /api/v1/admin/contracttypes
**New Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/admin/contracttypes?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/zohocontracts/api/v1/admin/contracttypes?api_token=YOUR_API_TOKEN
**Request Body:**
| Field | Type | Description |
|-------|------|-------------|
| approvalWorkflow | string | |
| categories | string | |
| description | string | |
| intent | number | |
| isCustom | boolean | |
| name | string | |
| partyA | number | |
| partyB | number | |
| state | number | |
**Example Request (New Format):**
```bash
curl -X POST 'https://api.lowcodeapi.com/zohocontracts/api/v1/admin/contracttypes?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://www.zoho.com/contracts/api/contract-type/create-contract-type.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/zohocontracts/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/zohocontracts/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/zohocontracts/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 |
|----------|--------|----------|
| Get Collaborators | GET | Collaborators |
| Create Collaborators | POST | Collaborators |
| Update Collaborators | PUT | Collaborators |
| Delete Collaborator | DELETE | Collaborators |
| Get Contract Type | GET | Contract Types |
| Get Contract Type using Admin privilege | GET | Contract Types |
| Get Contract Types List | GET | Contract Types |
| Get Contract Types List using Admin privilege | GET | Contract Types |
| Get Contract Type Template Fields | GET | Contract Types |
| Create Contract Type | POST | Contract Types |
| Update Contract Type | PUT | Contract Types |
| Delete Contract Type | DELETE | Contract Types |
| Get Contract | GET | Contracts/Create and Manage |
| Create Contract | POST | Contracts/Create and Manage |
| Create Contract with Values for Document Fields | POST | Contracts/Create and Manage |
| Update Contract | PUT | Contracts/Create and Manage |
| Delete Contract | DELETE | Contracts/Create and Manage |
| Get Signers List | GET | Contracts/Create and Manage |
| Get All Contracts List | GET | Contracts/Listing |
| Get Contracts List | GET | Contracts/Listing |
| Get Shared Contracts List | GET | Contracts/Listing |
| Get Obligation Contracts List | GET | Contracts/Listing |
| Get Counterparty | GET | Counterparties |
| Get Counterparties List | GET | Counterparties |
| Create Counterparty | POST | Counterparties |
| Update Counterparty | PUT | Counterparties |
| Delete Counterparty | DELETE | Counterparties |
| Get Counterparty Contacts | GET | Counterparty Contacts |
| Create Counterparty Contact | POST | Counterparty Contacts |
| Update Counterparty Contact | PUT | Counterparty Contacts |
| Delete Counterparty Contact | DELETE | Counterparty Contacts |
| Get Counterparty Types List | GET | Counterparty Types |
| Get Counterparty Types List using Admin Privilege | GET | Counterparty Types |
| Create Counterparty Type | POST | Counterparty Types |
| Update Counterparty Type | PUT | Counterparty Types |
| Delete Counterparty Type | DELETE | Counterparty Types |
| Get Departments List | GET | Departments |
| Get Departments List using Admin privilege | GET | Departments |
| Create Department | POST | Departments |
| Update Department | PUT | Departments |
| Delete Department | DELETE | Departments |
| Get Obligation Categories List | GET | Obligation Category |
| Get Obligation Categories List using Admin privile... | GET | Obligation Category |
| Create Obligation Category | POST | Obligation Category |
| Update Obligation Category | PUT | Obligation Category |
| Delete Obligation Category | DELETE | Obligation Category |
| Get Obligations List | GET | Obligations/Create and Manage |
| Create Obligation | POST | Obligations/Create and Manage |
| Update Obligation | PUT | Obligations/Create and Manage |
| Update Obligation Status | PUT | Obligations/Create and Manage |
| Delete Obligation | DELETE | Obligations/Create and Manage |
| Get All Obligations List | GET | Obligations/Obligation Owner |
| Get Pending Obligations List | GET | Obligations/Obligation Owner |
| Get Tasks List of an Obligation | GET | Obligations/Obligation Owner |
| Get Tasks List of a Pending Obligation | GET | Obligations/Obligation Owner |
| Get Organization Info | GET | Organization |
| Update Organization Info | PUT | Organization |
| Get Active Users | GET | Users |
## API Definition Endpoints
You can fetch the complete API specification for this provider:
**New Format (OpenAPI spec):**
```bash
curl 'https://backend.lowcodeapi.com/zohocontracts/openapi'
```
**Old Format (API definition):**
```bash
curl 'https://backend.lowcodeapi.com/zohocontracts/definition'
```
## Response Format
All responses are wrapped in a `data` key:
```json
{
"data": {
// Actual response from provider (object or array)
}
}
```