Zoho CRM
Connect & Ingest data from Zoho CRM
Zoho CRM is a cloud-based customer relationship management platform that helps businesses manage leads, contacts, accounts, deals, and more across the entire sales lifecycle. The Sling Zoho CRM connector extracts data from the Zoho CRM REST API v6, supporting core CRM modules (leads, contacts, accounts, deals), activity data (tasks, meetings, calls), and additional objects like campaigns, products, notes, quotes, and vendors.
CLI Pro Required: APIs require a CLI Pro token or Platform Plan.
Setup
The following credentials and inputs are accepted:
Secrets:
client_id(required) -> Your Zoho OAuth2 Client IDclient_secret(required) -> Your Zoho OAuth2 Client Secretsoid(required) -> Your Zoho CRM Organization ID (format:ZohoCRM.<org_id>)accounts_url(optional) -> Zoho Accounts URL for your data center (default:https://accounts.zoho.com). See Multi-DC Support below.api_domain(optional) -> Zoho API domain for your data center (default:https://www.zohoapis.com). See Multi-DC Support below.
Inputs:
anchor_date(optional) -> The starting date for historical data extraction (default: 1 year ago). Format:YYYY-MM-DD
Getting Your Credentials
Zoho CRM uses OAuth2 Client Credentials for API authentication. You need to create a Self Client application:
Go to the Zoho API Console
Click Add Client and select Self Client
Give your client a name (e.g., "Sling Integration") and click Create
You will see your Client ID and Client Secret -- copy both
Finding your Organization ID (SOID):
Log in to Zoho CRM
Go to Setup > Developer Space > APIs
Your Organization ID is displayed on the API dashboard
The SOID format is
ZohoCRM.<org_id>(e.g.,ZohoCRM.12345678)
Required OAuth Scopes:
The connector requests the following scopes automatically:
ZohoCRM.modules.ALL-- Read access to all CRM modulesZohoCRM.settings.ALL-- Read access to CRM settingsZohoCRM.users.ALL-- Read access to CRM usersZohoCRM.org.ALL-- Read access to organization dataZohoSearch.securesearch.READ-- Read access for search operations
Self Client apps use the Client Credentials grant type, which means no user interaction is required for token generation. Sling handles token refresh automatically.
Using sling conns
sling connsEnvironment Variable
See here to learn more about the .env.sling file.
Sling Env File YAML
See here to learn more about the sling env.yaml file.
With anchor date for historical data:
Multi-DC Support
Zoho operates data centers in multiple regions. By default, the connector uses the US data center (accounts.zoho.com / www.zohoapis.com). If your Zoho account is hosted in a different region, set the accounts_url and api_domain secrets accordingly:
Region
accounts_url
api_domain
US
https://accounts.zoho.com (default)
https://www.zohoapis.com (default)
EU
https://accounts.zoho.eu
https://www.zohoapis.eu
India
https://accounts.zoho.in
https://www.zohoapis.in
Australia
https://accounts.zoho.com.au
https://www.zohoapis.com.au
Japan
https://accounts.zoho.jp
https://www.zohoapis.jp
Canada
https://accounts.zohocloud.ca
https://www.zohoapis.ca
Example for EU data center:
Replication
Here's an example replication configuration to sync Zoho CRM data to a PostgreSQL database:
Sync all endpoints:
Endpoints
Core CRM Objects
leads
CRM leads
Yes
contacts
CRM contacts
Yes
accounts
CRM accounts/companies
Yes
deals
CRM deals/opportunities
Yes
Activities
tasks
CRM tasks/activities
Yes
meetings
CRM meetings/events
Yes
calls
CRM call logs
Yes
Sales & Marketing
campaigns
CRM campaigns
Yes
products
Product catalog
Yes
quotes
Quotes/proposals
Yes
vendors
Vendor records
Yes
Other
users
All CRM users in the organization
No
notes
Notes attached to records
Yes
modules
Metadata about all available CRM modules
No
To discover available endpoints:
Incremental Sync
The Zoho CRM connector uses time-based incremental sync via the Modified_Time field for most endpoints:
First run: Fetches records modified from
anchor_date(default: 1 year ago) to presentSubsequent runs: Only fetches records modified after the last sync
Incremental sync is supported for:
Core CRM objects (leads, contacts, accounts, deals)
Activities (tasks, meetings, calls)
Sales & marketing (campaigns, products, quotes, vendors)
Notes
The users and modules endpoints do not support incremental sync and always perform a full refresh.
Rate Limiting
The Zoho CRM API enforces rate limits based on your Zoho edition. The connector automatically:
Uses conservative rate limiting (5 requests/second with 3 concurrent requests)
Retries with exponential backoff on 429 (rate limit) responses
Common Use Cases
Sync Core CRM Data
Sync Activity Data
Sync Sales Pipeline
If you are facing issues connecting, please reach out to us at [email protected], on discord or open a Github Issue here.
Last updated
Was this helpful?