/** * Function used to get the internal Id of the currency * @param {string} currency – Zoho Opportunity stage * @returns {number} currencyID – Internal ID of the currency */ function getCurrency(currency) { … Continue reading create function with object for key-value mapping
Tag: zoho
Get the deleted record data from zoho crm and update the change in NetSuite accordingly.
to fetch the deleted data,we can use Request URL: https://www.zohoapis.com/crm/v2/{module_api_name}/deleted /** * Defines the function that fetches deleted Zoho data. * @param {Object} customRecord – The custom record containing Zoho last run information * @param {string} accessToken – The access token to authenticate with Zoho API * @param {string} lastRunTime – The last run time… Continue reading Get the deleted record data from zoho crm and update the change in NetSuite accordingly.
Diffent status code in zoho api calls
The 200 series : OK – HTTP 200 The API request is successful. Created – HTTP 201 Message: record added. Request fulfilled for record insertion. Accepted – HTTP 202 The request has been accepted. Generally, the server takes time to complete the process. No Content – HTTP 204 There is no content available for the… Continue reading Diffent status code in zoho api calls
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, … Continue reading Fetch and Process Data From ZOHO CRM
Registering Client for ZOHO integration in ZOHO Developer console
Before get started with authorization and make any calls using the Zoho CRM APIs, we need to register application with Zoho CRM. To register, Go to Zoho Developer Console. Choose a client type: Java Script: Applications that run exclusively on a browser and are independent of a web server. Web Based: Applications that are clients running on a dedicated… Continue reading Registering Client for ZOHO integration in ZOHO Developer console
Access Token and Refresh token generation using ZOHO CRM
To generate, first we need to make register the client and obtain client Id and client secret. Once it generated, we need to make an authorization request of the form. “https://accounts.zoho.in/oauth/v2/auth?response_type=code&client_id=1000.YER1ZKFUZAJ9S53P8ZIZ09MSZMPFMG&scope=ZohoCRM.modules.ALL&redirect_uri=https://td2896732.app.netsuite.com/app/common/scripting/scriptrecord.nl?id=2358&access_type=offline” type this in a web browser and zoho access page will open, accept this. Then it will redirect to the implementation page of our… Continue reading Access Token and Refresh token generation using ZOHO CRM
Zoho -Implementation Plan
Goals and Objectives Utilize Zoho CRM’s features to efficiently manage and track sales opportunities, from lead qualification to closing sales orders. Set up a reliable integration between Zoho CRM and NetSuite to facilitate the transfer of relevant data, including customer details and sales orders. Current Process For dedicated projects and clients with a large volume… Continue reading Zoho -Implementation Plan
ZOHO CRM – SYSTEM STUDY
Summary The purpose of this system study is to evaluate Zoho CRM as a potential replacement for the process from Lead to sales order in NetSuite and provide a comprehensive understanding of its capabilities and suitability for our organization’s needs. The study focused on various aspects of Zoho CRM, including lead management, opportunity tracking, sales… Continue reading ZOHO CRM – SYSTEM STUDY
Add fields to the job listing in Zoho
To add extra fields to your job listing, add the highlighted code on your website. Modify page name accountingly.
Remove fields from the job listing in Zoho
For your job listing, Zoho Recruit provides the following default fields: job type, city, country, date opened, job description, and experience. Add the following CSS to your website to remove them. Fields CSS Code Remove City .zrsite_City {display: none;} Remove Date .zrsite_Date_Opened {display: none;} Remove Job Type .zrsite_Job_Type {display: none;} RemoveJob Description .zrsite_Job_Description {display: none;}