ZOHO

Insert Records In Zoho Modules Without Invoke URL Using Deluge

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

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

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

 

Syntax:

zoho.crm.createRecord(<Module Name>,<Parameter>);

You can also insert records in other modules of the CRM.

Here We are going to insert a record in Leads module. 

Module Name: Leads

Parameter: The field which you need to insert along with the creation of the record.

You need to map the parameter if there is multiple fields are going to insert.

Example:

Parameter name: map_param

map_param = Map();

In the source code I have inserted the First Name and Last Name from the Leads Module.

Source Code:

new_lead = Map();
new_lead.put("Last_Name","Last Name");
new_lead.put("First_Name",First Name);
response = zoho.crm.createRecord("Leads",new_lead);

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

Hope you achieve something.

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