ZOHO

Update Records In Zoho Modules Without Invoke URL Using Deluge

We have seen the examples of Get and Insert records using Invoke URL in deluge.

Get records : http://staging.thecodehubs.com/get-records-from-zoho-modules-using-deluge

Insert Records : http://staging.thecodehubs.com/insert-records-in-zoho-modules-using-deluge

Here I am going to show you how to Update CRM record without using the Invoke URL with the help of Deluge.

I am going to use inbuilt function of Zoho CRM for the Update Record.

updateRecord” is the function which helps us to Update Records.

 

Syntax:

zoho.crm.updateRecord(<Module Name>,<Record ID>,<Parameter>);

Module Name: Leads, Contacts , etc.

Record Id: Record Id is the id of your record which you want to edit.

Parameter: The field which you need to update that will need to add to the parameter.

First You need to map the parameter with Map() function.

In the Source Code I have mapped “update_lead” Parameter.

Source Code:

update_lead = Map();
update_lead.put("Last_Name","New Last Name");
update_lead.put("First_Name","New First Name");
          
response = zoho.crm.updateRecord("Leads",23033XXXXXXXXXXXXXX,update_lead);
info(response);

Insert Records without Invoke URL using Deluge: http://staging.thecodehubs.com/insert-records-in-zoho-modules-without-invoke-url-using-deluge

Give your review if it helps.

Thanks

Selina Parmar

I am a senior WordPress Developer at Vision Infotech. I have expertise in Web Designing and Development with PHP WordPress. I have enough skills in HTML, CSS, Bootstrap, JavaScript, jQuery, SQL, Web API. Also additionally I can do integration of the Zoho Platform using deluge code.

Share
Published by
Selina Parmar

Recent Posts

Testing hk

Testing

2 years ago

Create and Used PIPE in angular

In this article, we have to show Create and Used PIPE in angular

2 years ago

Operation

Testing

2 years ago

Create and Used PIPE in angular

In this article, we have to show Create and Used PIPE in angular

2 years ago

Create and Used PIPE in angular

In this article, we have to show Create and Used PIPE in angular

2 years ago

TETS NEW

test

3 years ago