Lodol Docs

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

ParameterTypeRequiredDescription
lead_idstringNoZoho CRM lead ID
create_dealbooleanNoWhether 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

ParameterTypeRequiredDescription
last_namestringNoContact last name
emailstringNoContact email
phonestringNoContact 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

ParameterTypeRequiredDescription
last_namestringNoLead last name
companystringNoCompany name
emailstringNoLead email
phonestringNoLead phone

Response

{
  "data": [
    {
      "code": "SUCCESS",
      "details": {
        "id": "1234567890"
      },
      "status": "success"
    }
  ]
}

Find Zoho CRM contact by email

Search contacts using an email address.

Parameters

ParameterTypeRequiredDescription
emailstringNoEmail to search for

Response

{
  "Email": "doe@example.com",
  "Last_Name": "Doe",
  "id": "1234567890"
}

Get Zoho CRM lead

Retrieve a lead by ID.

Parameters

ParameterTypeRequiredDescription
lead_idstringNoZoho 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

ParameterTypeRequiredDescription
limitnumberNoMaximum leads to return

Response

[
  {
    "Last_Name": "Doe",
    "id": "1234567890"
  }
]

Update Zoho CRM contact

Update contact fields by ID.

Parameters

ParameterTypeRequiredDescription
contact_idstringNoZoho CRM contact ID
updatesobjectNoJSON 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

ParameterTypeRequiredDescription
lead_idstringNoZoho CRM lead ID
updatesobjectNoJSON object of fields to update

Response

{
  "data": [
    {
      "code": "SUCCESS",
      "details": {
        "id": "1234567890"
      },
      "status": "success"
    }
  ]
}

On this page