Multi DC

Zoho CRM is hosted at multiple data centers. Therefore, the API domain URL varies for each data center. This makes integration simpler and avoids conflicts between browser extensions and the user's current session.

The various domains and their respective API domain URLs are:

  • US: https://accounts.zoho.com

  • AU: https://accounts.zoho.com.au

  • EU: https://accounts.zoho.eu

  • IN: https://accounts.zoho.in

  • CN: https://accounts.zoho.com.cn

  • JP: https://accounts.zoho.jp

When you made an Authorization Request using the below authorization URL,

https://accounts.zoho.com/oauth/v2/auth?&scope=ZohoCRM.users.ALL&client_id={client_id}&response_type=code&access_type={offline_or_online}&redirect_uri={redirect_uri}

the response to the request was:

{redirect_uri}?code={grant_token}&location=us&accounts-server=https://accounts.zoho.com

The "location=us" parameter contains the domain of your account. Use this domain in all API endpoints.

Therefore, the domain-specific URL to fetch all CRM Leads is

  • EU domain: "https://www.zohoapis.eu/crm/v3/Leads"

  • CN domain: "https://www.zohoapis.com.cn/crm/v3/Leads"

Note

You must make the authorization request from https://accounts.zoho.com for the EU, AU, and IN domains. After the request is successful, the system automatically redirects you to your domain.
For the CN domain, make the authorization request from https://accounts.zoho.com.cn.

Enabling Multi DC for a web-based client

After registering your client, you can enable Multi DC in the SETTINGS tab.

With this option, you can decide users from which domain can access the web application.

You can see in the above screenshot that users from Europe, Australia, and India can access the web-based client. The client ID remains the same, and the client secret differs from one DC to another. You can also choose to have the same client secret across multiple domains based on your business needs.