Documentation Index
Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
π Quickstart
Connect to Zoho CRM with Nango and see data flow in 2 minutes.
Authorize Zoho CRM
Go to Connections -> Add Test Connection -> Authorize, then log in to Zoho CRM. Later, youβll let your users do the same directly from your app. Call the Zoho CRM API
Letβs make your first request to the Zoho CRM API (fetch a list of leads). Replace the placeholders below with your secret key, integration ID, and connection ID:curl "https://api.nango.dev/proxy/crm/v8/Leads?fields=Last_Name,Email,Record_Status__s,Converted__s,Converted_Date_Time&per_page=10" \
-H "Authorization: Bearer <NANGO-SECRET-KEY>" \
-H "Provider-Config-Key: <INTEGRATION-ID>" \
-H "Connection-Id: <CONNECTION-ID>"
Install Nangoβs backend SDK with npm i @nangohq/node. Then run:import { Nango } from '@nangohq/node';
const nango = new Nango({ secretKey: '<NANGO-SECRET-KEY>' });
const res = await nango.get({
endpoint: '/crm/v8/Leads',
providerConfigKey: '<INTEGRATION-ID>',
params: {
fields: 'Last_Name,Email,Record_Status__s,Converted__s,Converted_Date_Time',
per_page: 10
},
connectionId: '<CONNECTION-ID>'
});
console.log(JSON.stringify(res.data.data, null, 2));
Or fetch credentials with the Node SDK or API.β
Youβre connected! Check the Logs tab in Nango to inspect requests. Implement Nango in your app
Follow our Auth implementation guide to integrate Nango in your app.To obtain your own production credentials, follow the setup guide linked below.
π Zoho CRM Integration Guides
Nango maintained guides for common use cases.
Official docs: Zoho CRM API docs
π§© Pre-built syncs & actions for Zoho CRM
Enable them in your dashboard. Extend and customize to fit your needs.
Accounts
| Function name | Description | Type | Source code |
|---|
create-account | Create an account in Zoho CRM | Action | π Github |
delete-account | Delete or archive an account in Zoho CRM. | Action | π Github |
get-account | Retrieve a single account from Zoho CRM | Action | π Github |
list-accounts | List accounts from Zoho CRM. | Action | π Github |
update-account | Update an account in Zoho CRM | Action | π Github |
| Function name | Description | Type | Source code |
|---|
create-call | Create a call in Zoho CRM | Action | π Github |
delete-call | Delete or archive a call in Zoho CRM. | Action | π Github |
get-call | Retrieve a single call from Zoho CRM | Action | π Github |
list-calls | List calls from Zoho CRM. | Action | π Github |
update-call | Update a call in Zoho CRM | Action | π Github |
| Function name | Description | Type | Source code |
|---|
create-contact | Create a contact in Zoho CRM | Action | π Github |
delete-contact | Delete or archive a contact in Zoho CRM | Action | π Github |
get-contact | Retrieve a single contact from Zoho CRM. | Action | π Github |
list-contacts | List contacts from Zoho CRM with optional filtering and pagination. | Action | π Github |
update-contact | Update a contact in Zoho CRM | Action | π Github |
| Function name | Description | Type | Source code |
|---|
create-deal | Create a deal in Zoho CRM | Action | π Github |
delete-deal | Delete or archive a deal in Zoho CRM | Action | π Github |
get-deal | Retrieve a single deal from Zoho CRM | Action | π Github |
list-deals | List deals from Zoho CRM | Action | π Github |
update-deal | Update a deal in Zoho CRM | Action | π Github |
| Function name | Description | Type | Source code |
|---|
create-event | Create an event in Zoho CRM. | Action | π Github |
delete-event | Delete or archive an event in Zoho CRM | Action | π Github |
get-event | Retrieve a single event from Zoho CRM. | Action | π Github |
list-events | List events from Zoho CRM. | Action | π Github |
update-event | Update an event in Zoho CRM | Action | π Github |
| Function name | Description | Type | Source code |
|---|
convert-lead | Convert a lead into account, contact, and deal records | Action | π Github |
create-lead | Create a lead in Zoho CRM | Action | π Github |
delete-lead | Delete or archive a lead in Zoho CRM | Action | π Github |
get-lead | Retrieve a single lead from Zoho CRM by its record ID. | Action | π Github |
list-leads | List leads from Zoho CRM | Action | π Github |
update-lead | Update a lead in Zoho CRM | Action | π Github |
| Function name | Description | Type | Source code |
|---|
create-note | Create a note in Zoho CRM | Action | π Github |
delete-note | Delete or archive a note in Zoho CRM | Action | π Github |
get-note | Retrieve a single note from Zoho CRM. | Action | π Github |
list-notes | List notes from Zoho CRM | Action | π Github |
update-note | Update a note in Zoho CRM | Action | π Github |
Products
| Function name | Description | Type | Source code |
|---|
create-product | Create a product in Zoho CRM. | Action | π Github |
delete-product | Delete or archive a product in Zoho CRM. | Action | π Github |
get-product | Retrieve a single product from Zoho CRM | Action | π Github |
list-products | List products from Zoho CRM | Action | π Github |
update-product | Update a product in Zoho CRM | Action | π Github |
Records
| Function name | Description | Type | Source code |
|---|
search-records | Search records in a Zoho CRM module using criteria, email, phone, or word filters. | Action | π Github |
upsert-records | Upsert records in a Zoho CRM module. Inserts new records or updates existing ones based on duplicate check fields. | Action | π Github |
| Function name | Description | Type | Source code |
|---|
create-task | Create a task in Zoho CRM. | Action | π Github |
delete-task | Delete or archive a task in Zoho CRM | Action | π Github |
get-task | Retrieve a single task from Zoho CRM | Action | π Github |
list-tasks | List tasks from Zoho CRM | Action | π Github |
update-task | Update a task in Zoho CRM. | Action | π Github |
| Function name | Description | Type | Source code |
|---|
get-user | Retrieve a single user from Zoho CRM. | Action | π Github |
list-users | List users from Zoho CRM. | Action | π Github |
| Function name | Description | Type | Source code |
|---|
accounts | Sync accounts from Zoho CRM | Sync | π Github |
calls | Sync calls from Zoho CRM | Sync | π Github |
contacts | Sync contacts from Zoho CRM | Sync | π Github |
deals | Sync deals from Zoho CRM | Sync | π Github |
events | Sync events from Zoho CRM | Sync | π Github |
leads | Sync leads from Zoho CRM | Sync | π Github |
notes | Sync notes from Zoho CRM | Sync | π Github |
products | Sync products from Zoho CRM. | Sync | π Github |
tasks | Sync tasks from Zoho CRM | Sync | π Github |
users | Sync users from Zoho CRM | Sync | π Github |