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.
Tag: zoho crm
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