Register your application - Node JS 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.

- The newly registered app's Client ID and Client Secret can be found by clicking Options → Edit.

Note
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.
Related Articles
Installation - Node JS SDK
Node JS SDK will be installed and a package named 'zcrmsdk' will be created in the local machine. The package can be added using the following code: var ZCRMRestClient = require('zcrmsdk') Installing the SDK Run the command below to install the Node ...
Initialization - Node JS SDK
Whenever the app is started, the below code snippet is to be called for initialization. var ZCRMRestClient = require('zcrmsdk'); ZCRMRestClient.initialize().then(function() { //do whatever required after initialize }) Generating self-authorized grant ...
Configuration - Node JS SDK
Your OAuth Client details should be given to the SDK as a property file. In the SDK, you need to configure a file named oauth_configuration.properties. Please place the respective values in that file. You can place it under resources folder from ...
Node JS SDK - An Overview
Node JS SDK offers a way to create client node js applications that can be integrated with Zoho CRM. This SDK makes the access and use of necessary CRM APIs easy. In other words, it serves as a wrapper for the REST APIs, making it easier to use the ...
Release Notes - Node JS SDK
ZCRMSDK -VERSION 0.0.15 Install command npm install zcrmsdk@0.0.15 Notes Enhancement: User identifier default value handled in get method. ZCRMSDK -VERSION 0.0.14 Install command npm install zcrmsdk@0.0.14 Notes Issue fix: Default user identifier set ...