Register your application - Node JS SDK

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:

  1. Go to the site: accounts.zoho.com/developerconsole
  2. Click Add Client ID



  3. Enter the Client NameClient Domain and Authorized Redirect URL.
  4. Select the Client Type as Web based



  5. Click Create.
  6. Your Client app would have been created and displayed by now.
  7. 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

    • 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 with ease. In other words, it serves as a wrapper for the REST APIs, making it easier to use ...
    • 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 ...
    • Register your application - Java 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, ...
    • 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 ...
    • Register your application - C# 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 ...