Zoho CRM
API actions for the Zoho CRM integration.
Zoho CRM
Automate Zoho CRM workflows: manage leads, contacts, and conversions with access tokens.
Convert Zoho CRM lead
Convert a lead into contact and optionally create a deal.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
lead_id | string | No | Zoho CRM lead ID |
create_deal | boolean | No | Whether to create a deal during conversion |
Response
{
"Accounts": "9876543210",
"Contacts": "1234567890",
"Deals": "5555555555"
}Create Zoho CRM contact
Create a new contact with last name and optional email or phone.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
last_name | string | No | Contact last name |
email | string | No | Contact email |
phone | string | No | Contact phone |
Response
{
"data": [
{
"code": "SUCCESS",
"details": {
"id": "1234567890"
},
"status": "success"
}
]
}Create Zoho CRM lead
Create a new lead with last name and optional company, email, or phone.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
last_name | string | No | Lead last name |
company | string | No | Company name |
email | string | No | Lead email |
phone | string | No | Lead phone |
Response
{
"data": [
{
"code": "SUCCESS",
"details": {
"id": "1234567890"
},
"status": "success"
}
]
}Find Zoho CRM contact by email
Search contacts using an email address.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
email | string | No | Email to search for |
Response
{
"Email": "doe@example.com",
"Last_Name": "Doe",
"id": "1234567890"
}Get Zoho CRM lead
Retrieve a lead by ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
lead_id | string | No | Zoho CRM lead ID |
Response
{
"Email": "doe@example.com",
"Last_Name": "Doe",
"id": "1234567890"
}List Zoho CRM leads
List a set of leads with an optional limit.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | number | No | Maximum leads to return |
Response
[
{
"Last_Name": "Doe",
"id": "1234567890"
}
]Update Zoho CRM contact
Update contact fields by ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
contact_id | string | No | Zoho CRM contact ID |
updates | object | No | JSON object of fields to update |
Response
{
"data": [
{
"code": "SUCCESS",
"details": {
"id": "1234567890"
},
"status": "success"
}
]
}Update Zoho CRM lead
Update an existing lead by ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
lead_id | string | No | Zoho CRM lead ID |
updates | object | No | JSON object of fields to update |
Response
{
"data": [
{
"code": "SUCCESS",
"details": {
"id": "1234567890"
},
"status": "success"
}
]
}