Fetch and Process Data From ZOHO CRM

In zoho crm integration with NetSuite,we can fetch and process the zoho data using API call.

Create a header object for api call:

let headerObj = {

                    Authorization: “Zoho-oauthtoken “ + accessToken,

                    “If-Modified-Since”: lastRunTime,

                };

create an api call :

let oppoResponse = https.get({

                    url: “https://www.zohoapis.in/crm/v2/Deals”,

                    headers: headerObj,

                });

Leave a comment

Your email address will not be published. Required fields are marked *