> ## Documentation Index
> Fetch the complete documentation index at: https://nango-wari-migrated-bigcommerce-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Zoho CRM

> Integrate your application with the Zoho CRM API

## 🚀 Quickstart

Connect to Zoho CRM with Nango and see data flow in 2 minutes.

<Steps>
  <Step title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *Zoho*.
  </Step>

  <Step title="Authorize Zoho CRM">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then log in to Zoho CRM. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step title="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](https://app.nango.dev/dev/environment-settings), [integration ID](https://app.nango.dev/dev/integrations), and [connection ID](https://app.nango.dev/dev/connections):

    <Tabs>
      <Tab title="cURL">
        ```bash theme={null}
        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>"
        ```
      </Tab>

      <Tab title="Node">
        Install Nango's backend SDK with `npm i @nangohq/node`. Then run:

        ```typescript theme={null}
        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));
        ```
      </Tab>
    </Tabs>

    Or fetch credentials with the [Node SDK](/reference/sdks/node#get-a-connection-with-credentials) or [API](/reference/api/connection/get).

    ✅ You're connected! Check the [Logs](https://app.nango.dev/dev/logs) tab in Nango to inspect requests.
  </Step>

  <Step title="Implement Nango in your app">
    Follow our [Auth implementation guide](/guides/primitives/auth) to integrate Nango in your app.

    To obtain your own production credentials, follow the setup guide linked below.
  </Step>
</Steps>

## 📚 Zoho CRM Integration Guides

Nango maintained guides for common use cases.

* [How to register your own Zoho CRM OAuth app](/api-integrations/zoho-crm/how-to-register-your-own-zoho-crm-api-oauth-app)\
  Register an OAuth app with Zoho CRM and obtain credentials to connect it to Nango

* [How do I link my Zoho CRM account?](/api-integrations/zoho-crm/connect)\
  Learn how to authenticate with Zoho CRM and link your account

Official docs: [Zoho CRM API docs](https://www.zoho.com/crm/developer/docs/api/v8/)

## 🧩 Pre-built syncs & actions for Zoho CRM

Enable them in your dashboard. Extend and customize to fit your needs.

### Others

| Function name    | Description                                                                                                        | Type                                           | Source code                                                                                                             |
| ---------------- | ------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| `convert-lead`   | Convert a lead into account, contact, and deal records                                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/convert-lead.ts)   |
| `create-account` | Create an account in Zoho CRM                                                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/create-account.ts) |
| `create-call`    | Create a call in Zoho CRM                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/create-call.ts)    |
| `create-contact` | Create a contact in Zoho CRM                                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/create-contact.ts) |
| `create-deal`    | Create a deal in Zoho CRM                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/create-deal.ts)    |
| `create-event`   | Create an event in Zoho CRM.                                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/create-event.ts)   |
| `create-lead`    | Create a lead in Zoho CRM                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/create-lead.ts)    |
| `create-note`    | Create a note in Zoho CRM                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/create-note.ts)    |
| `create-product` | Create a product in Zoho CRM.                                                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/create-product.ts) |
| `create-task`    | Create a task in Zoho CRM.                                                                                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/create-task.ts)    |
| `delete-account` | Delete or archive an account in Zoho CRM.                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/delete-account.ts) |
| `delete-call`    | Delete or archive a call in Zoho CRM.                                                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/delete-call.ts)    |
| `delete-contact` | Delete or archive a contact in Zoho CRM                                                                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/delete-contact.ts) |
| `delete-deal`    | Delete or archive a deal in Zoho CRM                                                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/delete-deal.ts)    |
| `delete-event`   | Delete or archive an event in Zoho CRM                                                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/delete-event.ts)   |
| `delete-lead`    | Delete or archive a lead in Zoho CRM                                                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/delete-lead.ts)    |
| `delete-note`    | Delete or archive a note in Zoho CRM                                                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/delete-note.ts)    |
| `delete-product` | Delete or archive a product in Zoho CRM.                                                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/delete-product.ts) |
| `delete-task`    | Delete or archive a task in Zoho CRM                                                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/delete-task.ts)    |
| `get-account`    | Retrieve a single account from Zoho CRM                                                                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/get-account.ts)    |
| `get-call`       | Retrieve a single call from Zoho CRM                                                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/get-call.ts)       |
| `get-contact`    | Retrieve a single contact from Zoho CRM.                                                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/get-contact.ts)    |
| `get-deal`       | Retrieve a single deal from Zoho CRM                                                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/get-deal.ts)       |
| `get-event`      | Retrieve a single event from Zoho CRM.                                                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/get-event.ts)      |
| `get-lead`       | Retrieve a single lead from Zoho CRM by its record ID.                                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/get-lead.ts)       |
| `get-note`       | Retrieve a single note from Zoho CRM.                                                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/get-note.ts)       |
| `get-product`    | Retrieve a single product from Zoho CRM                                                                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/get-product.ts)    |
| `get-task`       | Retrieve a single task from Zoho CRM                                                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/get-task.ts)       |
| `get-user`       | Retrieve a single user from Zoho CRM.                                                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/get-user.ts)       |
| `list-accounts`  | List accounts from Zoho CRM.                                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/list-accounts.ts)  |
| `list-calls`     | List calls from Zoho CRM.                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/list-calls.ts)     |
| `list-contacts`  | List contacts from Zoho CRM with optional filtering and pagination.                                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/list-contacts.ts)  |
| `list-deals`     | List deals from Zoho CRM                                                                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/list-deals.ts)     |
| `list-events`    | List events from Zoho CRM.                                                                                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/list-events.ts)    |
| `list-leads`     | List leads from Zoho CRM                                                                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/list-leads.ts)     |
| `list-notes`     | List notes from Zoho CRM                                                                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/list-notes.ts)     |
| `list-products`  | List products from Zoho CRM                                                                                        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/list-products.ts)  |
| `list-tasks`     | List tasks from Zoho CRM                                                                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/list-tasks.ts)     |
| `list-users`     | List users from Zoho CRM.                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/list-users.ts)     |
| `search-records` | Search records in a Zoho CRM module using criteria, email, phone, or word filters.                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/search-records.ts) |
| `update-account` | Update an account in Zoho CRM                                                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/update-account.ts) |
| `update-call`    | Update a call in Zoho CRM                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/update-call.ts)    |
| `update-contact` | Update a contact in Zoho CRM                                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/update-contact.ts) |
| `update-deal`    | Update a deal in Zoho CRM                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/update-deal.ts)    |
| `update-event`   | Update an event in Zoho CRM                                                                                        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/update-event.ts)   |
| `update-lead`    | Update a lead in Zoho CRM                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/update-lead.ts)    |
| `update-note`    | Update a note in Zoho CRM                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/update-note.ts)    |
| `update-product` | Update a product in Zoho CRM                                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/update-product.ts) |
| `update-task`    | Update a task in Zoho CRM.                                                                                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/update-task.ts)    |
| `upsert-records` | Upsert records in a Zoho CRM module. Inserts new records or updates existing ones based on duplicate check fields. | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/actions/upsert-records.ts) |
| `accounts`       | Sync accounts from Zoho CRM                                                                                        | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/syncs/accounts.ts)         |
| `calls`          | Sync calls from Zoho CRM                                                                                           | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/syncs/calls.ts)            |
| `contacts`       | Sync contacts from Zoho CRM                                                                                        | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/syncs/contacts.ts)         |
| `deals`          | Sync deals from Zoho CRM                                                                                           | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/syncs/deals.ts)            |
| `events`         | Sync events from Zoho CRM                                                                                          | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/syncs/events.ts)           |
| `leads`          | Sync leads from Zoho CRM                                                                                           | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/syncs/leads.ts)            |
| `notes`          | Sync notes from Zoho CRM                                                                                           | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/syncs/notes.ts)            |
| `products`       | Sync products from Zoho CRM.                                                                                       | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/syncs/products.ts)         |
| `tasks`          | Sync tasks from Zoho CRM                                                                                           | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/syncs/tasks.ts)            |
| `users`          | Sync users from Zoho CRM                                                                                           | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/syncs/users.ts)            |

***
