Release Notes - Node JS SDK

Release Notes - Node JS SDK

ZCRMSDK -VERSION 0.0.15

Install command
  1. npm install zcrmsdk@0.0.15
Notes
  1. Enhancement: User identifier default value handled in get method.

ZCRMSDK -VERSION 0.0.14

Install command
  1. npm install zcrmsdk@0.0.14
Notes
  1. Issue fix: Default user identifier set internally in case user doesn't set it.

ZCRMSDK -VERSION 0.0.13

Install command
  1. npm install zcrmsdk@0.0.13
Notes
  1. Enhancement:
    1. Custom headers support added.
  2. Issue Fix:
    1. Unwanted code removed

ZCRMSDK -VERSION 0.0.12

Install command
  1. npm install zcrmsdk@0.0.12
Notes
  1. Issue fixes.

ZCRMSDK -VERSION 0.0.11

Install command
  1. npm install zcrmsdk@0.0.11
Notes
  1. Enhancement: Refresh token key added in result.

ZCRMSDK -VERSION 0.0.10

Install command
  1. npm install zcrmsdk@0.0.10
Notes
  1. Enhancement: Header added.

ZCRMSDK -VERSION 0.0.7 - 0.0.9

Install command
  1. npm install zcrmsdk@0.0.x
Notes
  1. Issue fixes.

ZCRMSDK -VERSION 0.0.6

Install command
  1. npm install zcrmsdk@0.0.6
Notes
  1. Issue fix: Token management taken from oauth_configuration.properties fixed.

ZCRMSDK -VERSION 0.0.1 - 0.0.5

Install command
  1. npm install zcrmsdk@0.0.x
Notes
  1. Issue fixes.

ZCRMSDK -VERSION 0.0.0

Install command
  1. npm install zcrmsdk@0.0.0
Notes
  1. Initial release.





    • 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 ...
    • Class Hierarchy - Node JS SDK

      All Zoho CRM entities are modelled as modules having classes, methods and instance variables applicable to that particular entity. ZCRMRestClient is the base class of the Python SDK. ZCRMRestClient has methods to get instances of various other Zoho ...