From 4846a5b243086626ff2699f21319ccd9501bb36f Mon Sep 17 00:00:00 2001 From: Pavlo Zhukov Date: Tue, 24 Jul 2018 22:39:17 +0300 Subject: [PATCH] Add possible config params description --- README.md | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e4923d5..803d17a 100644 --- a/README.md +++ b/README.md @@ -266,7 +266,12 @@ Currently a WIP, but feel free to ask how you can help. ``` var Zoho = require('node-zoho'); -var zoho = new Zoho({authToken:'API-TOKEN'}); +var config = { + authToken: 'API-TOKEN', +// region: 'eu',//default is 'com' +}; + +var zoho = new Zoho(config); var records = [ { "Lead Source" : "Site Registration", @@ -293,6 +298,30 @@ var callback = function (err, result) { ``` +# Possible Zoho config parameters + + +
+
+ + + + + + + + + + + + + + + + + +
Parameter NameDescripionDefault value
authTokenYour CRM user authtoken
regionZoho CRM region. Possible values: 'com', 'eu'com
+ # Contribute All the code is coffescript, but we deploy compiled js to npm. If you want to help, checkout the git repo and submit a PR.