Skip to main content

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.
1

Create the integration

In Nango (free signup), go to Integrations -> Configure New Integration -> Zoho.
2

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.
3

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>"
Or fetch credentials with the Node SDK or API.βœ… You’re connected! Check the Logs tab in Nango to inspect requests.
4

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 nameDescriptionTypeSource code
create-accountCreate an account in Zoho CRMActionπŸ”— Github
delete-accountDelete or archive an account in Zoho CRM.ActionπŸ”— Github
get-accountRetrieve a single account from Zoho CRMActionπŸ”— Github
list-accountsList accounts from Zoho CRM.ActionπŸ”— Github
update-accountUpdate an account in Zoho CRMActionπŸ”— Github

Calls

Function nameDescriptionTypeSource code
create-callCreate a call in Zoho CRMActionπŸ”— Github
delete-callDelete or archive a call in Zoho CRM.ActionπŸ”— Github
get-callRetrieve a single call from Zoho CRMActionπŸ”— Github
list-callsList calls from Zoho CRM.ActionπŸ”— Github
update-callUpdate a call in Zoho CRMActionπŸ”— Github

Contacts

Function nameDescriptionTypeSource code
create-contactCreate a contact in Zoho CRMActionπŸ”— Github
delete-contactDelete or archive a contact in Zoho CRMActionπŸ”— Github
get-contactRetrieve a single contact from Zoho CRM.ActionπŸ”— Github
list-contactsList contacts from Zoho CRM with optional filtering and pagination.ActionπŸ”— Github
update-contactUpdate a contact in Zoho CRMActionπŸ”— Github

Deals

Function nameDescriptionTypeSource code
create-dealCreate a deal in Zoho CRMActionπŸ”— Github
delete-dealDelete or archive a deal in Zoho CRMActionπŸ”— Github
get-dealRetrieve a single deal from Zoho CRMActionπŸ”— Github
list-dealsList deals from Zoho CRMActionπŸ”— Github
update-dealUpdate a deal in Zoho CRMActionπŸ”— Github

Events

Function nameDescriptionTypeSource code
create-eventCreate an event in Zoho CRM.ActionπŸ”— Github
delete-eventDelete or archive an event in Zoho CRMActionπŸ”— Github
get-eventRetrieve a single event from Zoho CRM.ActionπŸ”— Github
list-eventsList events from Zoho CRM.ActionπŸ”— Github
update-eventUpdate an event in Zoho CRMActionπŸ”— Github

Leads

Function nameDescriptionTypeSource code
convert-leadConvert a lead into account, contact, and deal recordsActionπŸ”— Github
create-leadCreate a lead in Zoho CRMActionπŸ”— Github
delete-leadDelete or archive a lead in Zoho CRMActionπŸ”— Github
get-leadRetrieve a single lead from Zoho CRM by its record ID.ActionπŸ”— Github
list-leadsList leads from Zoho CRMActionπŸ”— Github
update-leadUpdate a lead in Zoho CRMActionπŸ”— Github

Notes

Function nameDescriptionTypeSource code
create-noteCreate a note in Zoho CRMActionπŸ”— Github
delete-noteDelete or archive a note in Zoho CRMActionπŸ”— Github
get-noteRetrieve a single note from Zoho CRM.ActionπŸ”— Github
list-notesList notes from Zoho CRMActionπŸ”— Github
update-noteUpdate a note in Zoho CRMActionπŸ”— Github

Products

Function nameDescriptionTypeSource code
create-productCreate a product in Zoho CRM.ActionπŸ”— Github
delete-productDelete or archive a product in Zoho CRM.ActionπŸ”— Github
get-productRetrieve a single product from Zoho CRMActionπŸ”— Github
list-productsList products from Zoho CRMActionπŸ”— Github
update-productUpdate a product in Zoho CRMActionπŸ”— Github

Records

Function nameDescriptionTypeSource code
search-recordsSearch records in a Zoho CRM module using criteria, email, phone, or word filters.ActionπŸ”— Github
upsert-recordsUpsert records in a Zoho CRM module. Inserts new records or updates existing ones based on duplicate check fields.ActionπŸ”— Github

Tasks

Function nameDescriptionTypeSource code
create-taskCreate a task in Zoho CRM.ActionπŸ”— Github
delete-taskDelete or archive a task in Zoho CRMActionπŸ”— Github
get-taskRetrieve a single task from Zoho CRMActionπŸ”— Github
list-tasksList tasks from Zoho CRMActionπŸ”— Github
update-taskUpdate a task in Zoho CRM.ActionπŸ”— Github

Users

Function nameDescriptionTypeSource code
get-userRetrieve a single user from Zoho CRM.ActionπŸ”— Github
list-usersList users from Zoho CRM.ActionπŸ”— Github

Others

Function nameDescriptionTypeSource code
accountsSync accounts from Zoho CRMSyncπŸ”— Github
callsSync calls from Zoho CRMSyncπŸ”— Github
contactsSync contacts from Zoho CRMSyncπŸ”— Github
dealsSync deals from Zoho CRMSyncπŸ”— Github
eventsSync events from Zoho CRMSyncπŸ”— Github
leadsSync leads from Zoho CRMSyncπŸ”— Github
notesSync notes from Zoho CRMSyncπŸ”— Github
productsSync products from Zoho CRM.SyncπŸ”— Github
tasksSync tasks from Zoho CRMSyncπŸ”— Github
usersSync users from Zoho CRMSyncπŸ”— Github