Register your application - Python SDK
All the Zoho CRM APIs are authenticated with OAuth2 standards, so
it is mandatory to register and authenticate your client app with Zoho.
To register
- Go to the site: accounts.zoho.com/developerconsole
- Click Add Client ID.

- Enter the Client Name, Client Domain and Authorized Redirect URL.
- Select the Client Type as Web based.

- Click Create.
Your Client app would have been created and displayed by now.


Note
- The newly registered app's Client ID and Client Secret can be found by clicking Options → Edit.
- Options is the three dot icon at the right corner.
Registered applications will receive the following credentials:
Client id – The consumer key generated from the connected app.
Client Secret – The consumer secret generated from the connected app.
Redirect URI – The Callback URL that you registered during the app registration.
SEE ALSOPython SDK - An OverviewInstall the sdkConfigurationInitializationClass HierarchyResponses & ExceptionsErrors & SolutionsSample CodesRelease Notes
Related Articles
Installation - Python SDK
The SDK can be installed for your client application through Pip. Pip is a tool for dependency management in Python. Installing Pip Please refer the document below to install pip https://pip.pypa.io/en/stable/installing/ Installing the SDK Run the ...
Python SDK - An Overview
Python SDK offers a way to create client python applications that can be integrated with Zoho CRM. This SDK makes the access and use of necessary CRM APIs with ease. In other words, it serves as a wrapper for the REST APIs, making it easier to use ...
Responses & Exceptions - Python SDK
APIResponse, BulkAPIResponse and FileAPIResponse are the wrapper objects for Zoho CRM APIs’ responses. All API calling methods would return one of these three objects. A method-seeking entity would return APIResponse object, whereas a method-seeking ...
Configuration - Python SDK
Before you get started with creating your python application, you need to first authenticate the app with Zoho. And to do that there are some configuration procedures that need to be in place. There are two methods in which you can authenticate your ...
Release Notes - Python SDK
ZCRMSDK -VERSION 1.0.8 Install command pip install zcrmsdk==1.0.8 Notes Enhancement: Duplicate check fields can be ignored if not necessary in upsert record method . ZCRMSDK -VERSION 1.0.7 Install command pip install zcrmsdk==1.0.7 Notes Enhancement: ...