Appearance
Zoho CRM
Manage leads, contacts, deals, and accounts in Zoho CRM.
| Detail | Value |
|---|---|
| Category | CRM |
| Base URL | https://www.zohoapis.com/crm/v2 |
| Authentication | OAuth2 Client Credentials |
| Endpoints | 7 |
| Connector key | zoho_crm |
Using Zoho CRM in a workflow
- Go to Connections and click New Connection.
- Pick Zoho CRM from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /Contacts | List contacts |
POST /Contacts | Create a contact |
GET /Contacts/{record_id} | Get a contact by ID |
GET /Leads | List leads |
POST /Leads | Create a lead |
GET /Deals | List deals |
POST /Deals | Create a deal |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /Contacts
List contacts
| Detail | Value |
|---|---|
| Operation ID | crm.listContacts |
| Method | GET |
| Path | /Contacts |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
page | query | integer | No |
per_page | query | integer | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Zoho CRM connection from the Connection dropdown.
- In the Operation dropdown, select
crm.listContacts. - 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
| Detail | Value |
|---|---|
| Operation ID | crm.createContact |
| Method | POST |
| Path | /Contacts |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
data | array |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Zoho CRM connection from the Connection dropdown.
- In the Operation dropdown, select
crm.createContact. - 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
| Detail | Value |
|---|---|
| Operation ID | crm.getContact |
| Method | GET |
| Path | /Contacts/{record_id} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
record_id | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Zoho CRM connection from the Connection dropdown.
- In the Operation dropdown, select
crm.getContact. - 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
| Detail | Value |
|---|---|
| Operation ID | crm.listLeads |
| Method | GET |
| Path | /Leads |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
page | query | integer | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Zoho CRM connection from the Connection dropdown.
- In the Operation dropdown, select
crm.listLeads. - 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
| Detail | Value |
|---|---|
| Operation ID | crm.createLead |
| Method | POST |
| Path | /Leads |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
data | array |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Zoho CRM connection from the Connection dropdown.
- In the Operation dropdown, select
crm.createLead. - 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
| Detail | Value |
|---|---|
| Operation ID | crm.listDeals |
| Method | GET |
| Path | /Deals |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Zoho CRM connection from the Connection dropdown.
- In the Operation dropdown, select
crm.listDeals. - 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
| Detail | Value |
|---|---|
| Operation ID | crm.createDeal |
| Method | POST |
| Path | /Deals |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
data | array |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Zoho CRM connection from the Connection dropdown.
- In the Operation dropdown, select
crm.createDeal. - 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.