Skip to content
For LLMsView as Markdown·

Zoho CRM

Manage leads, contacts, deals, and accounts in Zoho CRM.

DetailValue
CategoryCRM
Base URLhttps://www.zohoapis.com/crm/v2
AuthenticationOAuth2 Client Credentials
Endpoints7
Connector keyzoho_crm

Using Zoho CRM in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Zoho CRM from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /ContactsList contacts
POST /ContactsCreate a contact
GET /Contacts/{record_id}Get a contact by ID
GET /LeadsList leads
POST /LeadsCreate a lead
GET /DealsList deals
POST /DealsCreate a deal

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /Contacts

List contacts

DetailValue
Operation IDcrm.listContacts
MethodGET
Path/Contacts

Parameters

NameLocationTypeRequired
pagequeryintegerNo
per_pagequeryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Zoho CRM connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.listContacts.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Zoho CRM API reference.

POST /Contacts

Create a contact

DetailValue
Operation IDcrm.createContact
MethodPOST
Path/Contacts

Parameters

No parameters.

Request Body

FieldType
dataarray

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Zoho CRM connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.createContact.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Zoho CRM API reference.

GET /Contacts/{record_id}

Get a contact by ID

DetailValue
Operation IDcrm.getContact
MethodGET
Path/Contacts/{record_id}

Parameters

NameLocationTypeRequired
record_idpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Zoho CRM connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.getContact.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Zoho CRM API reference.

GET /Leads

List leads

DetailValue
Operation IDcrm.listLeads
MethodGET
Path/Leads

Parameters

NameLocationTypeRequired
pagequeryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Zoho CRM connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.listLeads.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Zoho CRM API reference.

POST /Leads

Create a lead

DetailValue
Operation IDcrm.createLead
MethodPOST
Path/Leads

Parameters

No parameters.

Request Body

FieldType
dataarray

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Zoho CRM connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.createLead.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Zoho CRM API reference.

GET /Deals

List deals

DetailValue
Operation IDcrm.listDeals
MethodGET
Path/Deals

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Zoho CRM connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.listDeals.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Zoho CRM API reference.

POST /Deals

Create a deal

DetailValue
Operation IDcrm.createDeal
MethodPOST
Path/Deals

Parameters

No parameters.

Request Body

FieldType
dataarray

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Zoho CRM connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.createDeal.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Zoho CRM API reference.