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

# 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                                                                                                     |
| ------------- | --------------------------------------------------- | ---------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| `accounts`    | Fetches a list of 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) |
| `contacts`    | Fetches a list of 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`       | Fetches a list of deals/opportunities from zoho crm | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoho-crm/syncs/deals.ts)    |

***
