InteGreat 1: Integrate Zoho Creator with Zoho CRM

InteGreat 1: Integrate Zoho Creator with Zoho CRM



Hi everyone,

Today, we'll look at how to integrate your Zoho Creator application with Zoho CRM. As you might already know, we offer pre-built integrations that you can use to integrate with most of our Zoho products and other third-party services. So that, you don't have to spend a lot of time writing code to integrate them. Also, you always have the option to use REST API to connect all your favorite apps, if you don't find a pre-built integration defined for it.

Understanding the Integration field:


The integration field enables you to lookup data that is stored in an external service. This field is available both in our form-builder and workflow builder. All you need to do is drag and drop this field, select the required module, and fetch the data you need. In this way, you will be able to establish a relation between a record in your form (that's in your Zoho Creator app) with a record in the selected module of the external service.

Currently, we offer pre-built integration for the following services:
  • Zoho CRM

  • Zoho Recruit

  • Salesforce

  • Quickbooks

  • Zoho Desk

  • Zoho Books

  • Zoho Subscriptions

  • Clicktell

  • Twilio

  • Screen Magic

  • ClockWorkSMS

Integrating with Zoho CRM:


Once you have established a relationship between Zoho Creator and Zoho CRM, you can perform the following tasks:
  1. Add data to a CRM module 

  2. Fetch data from a CRM module

  3. Update Data to a CRM module

  4. Search CRM module and use data in Zoho Creator 

 

Let's look at each of them in detail.

1. Add data to a CRM module:

Overview:

 

Using the integration task, you can perform various automatic actions in Zoho CRM without any manual effort. And, one of those actions is to automatically Add data to a Zoho CRM Module. That's right. You can add a record in Zoho Creator form(by submitting the form) and have it simultaneously added in Zoho CRM without re-entering data for the second time in CRM. You can achieve this by using zoho.crm.create() task in Zoho Creator.

Syntax:

  1. <variable>=zoho.crm.create(<module_name>,<field_values>,[<duplicate_check>]);
Use Case:

Let's say you have a few product-related ebooks on your website and whenever a new customer fills the sign-up form to download the ebook, you want to capture the customer details in the Zoho CRM’s "Leads" module.  


Let's assume the sign-up form has the following fields:
  1. Name (Single Line field type)

  2. Phone (Single Line field type)

  3. Email Address (Email field type)


To create this record simultaneously in the Lead module of Zoho CRM, you need to execute zoho.crm.create() task in the "On Success" actions block of the Zoho Creator form. Thus, whenever the customer fills up the sign-up form and submits the form, it creates a record in Zoho CRM with the related details.

You can achieve by using the following script:

  1. leadinfo = { "Last Name" : input.Name, "Phone" : input.Phone, "Email" : input.Email_Address,
  2. "Country" : input.Country };
  3. response = zoho.crm.create("Leads", leadinfo); 

For more details on this task please click here.


2. Fetch data from a CRM module:


Similarly, you can fetch data from Zoho CRM and have them populated in a Zoho Creator form. Not only that, you can fetch records from multiple modules at the same time. You can achieve this by using zoho.crm.getRecords() task in Zoho Creator. 

Syntax:

  1. <response>=zoho.crm.getRecords(<module_name>,[<from_index>],[<to_index>]);

Use Case:

Let's say you need to fetch the Names of customer who belongs to a particular county (let's say India) and populate them in a drop down field in Zoho Creator from. That is, you need to fetch the data from Zoho CRM Contacts module and populate it whenever a user accesses the Zoho Creator form.

Let's assume the Customer Details form has the following fields:

  • Customer Name (Dropdown field type)

  • Phone (Single line field type)

  • Email Address (Email field type)


You can fetch the Last Name of each of you Client (from the Contacts module) and populate the Customer Name field using the ui.add() task. You can achieve this by adding the following script in the “On Load” actions block of the Zoho Creator form.

You can achieve by using the following script:


  1.  contactslist=zoho.crm.getRecords("Contacts");
  2. for each ContactRecord in contactslist 
  3. {
  4.   countrylist=list();
  5. if(ContactRecord.get("Mailing Country")== "India")
  6. {
  7. //info ContactRecord.get("Last Name");
  8. Customer_Name:ui.add(ContactRecord.get("Last Name"))
  9. }
  10. }

For more details on this task please click here. 



3. Update Data to a CRM module:

Next, let's look at how to update records in Zoho CRM by simply submitting a form with relevant details in Zoho Creator. You can achieve this by using zoho.crm.updateRecord() task in Zoho Creator.

Syntax:

  1. <response> =zoho.crm.updateRecord(<module_name>, <record_ID>, <New values as map object>);
Use Case:

Let's say you need to update the Contact Number of your customers in Zoho CRM whenever they update it by submitting a form in Zoho Creator.

Let's assume you have a Zoho Creator Form with the following fields:

  1. Customer Name(Zoho CRM Leads field type)
  2. Contact Number (Single Line field type)
You can update the Contact Number in the Leads module using the zoho.crm.updateRecord() task. You can achieve this by adding the following script in the "On Success” actions block of the Zoho Creator form.

  1. leadinfo = {"Phone":input.Contact_Number}; 
  2. response = zoho.crm.updateRecord("Leads",input.Customer_Name,leadinfo); 
For more details on this task please click here.



4. Search CRM Module and use data in Zoho Creator :

You can search for records in Zoho CRM by adding a specific criteria and populate them in Zoho Creator Form fields. For this, you need to specify the module name from which you want to search the records along with the optional start and end index numbers. This can be achieved using zoho.crm.searchRecords() task in Zoho Creator.

Syntax:

  1. <response>=zoho.crm.searchRecords(<module_name>, <criteria>, [<from_index>],[<to_index>]);

Let's say you want to fetch the details of all the customers whose Email Id contains ".org" (assuming they are non-profit customers) from the Contacts module. To achieve this, you can add the following script in the“On Load” actions block of the Zoho Creator form.

Let's assume we have a form called Qualified Non-Profit Customers with the following fields:

  1. Non profit contacts (Dropdown field)
  2. Qualify for Discount (Decision box)

  1. CRMresponse = zoho.crm.searchRecords("Contacts", ("(Email|contains|.org)"));
  2. for each contactval in CRMresponse
  3. {
  4. //info contactval.get("Full Name");
  5. Non_profit_contacts:ui.add(contactval.get("Full Name"));
  6. }
For more details on this task please click here.

Hope this post on Zoho CRM integration would be useful to many of you. If you have any doubts or queries, please feel free to add them as comments below. We would be happy to address them all.






    Access your files securely from anywhere







                            Zoho Developer Community





                                                  Use cases

                                                  Make the most of Zoho Desk with the use cases.

                                                   
                                                    

                                                  eBooks

                                                  Download free eBooks and access a range of topics to get deeper insight on successfully using Zoho Desk.

                                                   
                                                    

                                                  Videos

                                                  Watch comprehensive videos on features and other important topics that will help you master Zoho Desk.

                                                   
                                                    

                                                  Webinar

                                                  Sign up for our webinars and learn the Zoho Desk basics, from customization to automation and more

                                                   
                                                    
                                                  • Desk Community Learning Series


                                                  • Meetups


                                                  • Ask the Experts


                                                  • Kbase


                                                  • Resources


                                                  • Glossary


                                                  • Desk Marketplace


                                                  • MVP Corner






                                                            Manage your brands on social media



                                                                  Zoho TeamInbox Resources



                                                                      Zoho CRM Plus Resources

                                                                        Zoho Books Resources


                                                                          Zoho Subscriptions Resources

                                                                            Zoho Projects Resources


                                                                              Zoho Sprints Resources


                                                                                Qntrl Resources


                                                                                  Zoho Creator Resources



                                                                                      Zoho CRM Resources

                                                                                      • CRM Community Learning Series

                                                                                        CRM Community Learning Series


                                                                                      • Kaizen

                                                                                        Kaizen

                                                                                      • Functions

                                                                                        Functions

                                                                                      • Meetups

                                                                                        Meetups

                                                                                      • Kbase

                                                                                        Kbase

                                                                                      • Resources

                                                                                        Resources

                                                                                      • Digest

                                                                                        Digest

                                                                                      • CRM Marketplace

                                                                                        CRM Marketplace

                                                                                      • MVP Corner

                                                                                        MVP Corner







                                                                                          Design. Discuss. Deliver.

                                                                                          Create visually engaging stories with Zoho Show.

                                                                                          Get Started Now


                                                                                            Zoho Show Resources


                                                                                              Zoho Writer Writer

                                                                                              Get Started. Write Away!

                                                                                              Writer is a powerful online word processor, designed for collaborative work.

                                                                                                Zoho CRM コンテンツ








                                                                                                  Nederlandse Hulpbronnen


                                                                                                      ご検討中の方




                                                                                                            • Recent Topics

                                                                                                            • How do you list multiple contacts for a lead?

                                                                                                              My sales team wants to be able to add additional contacts for leads, how do we do that? Is there a different way we should be using the lead / contact functionality?
                                                                                                            • Field Not Updating in FSM Script - Service and Parts module.

                                                                                                              Dear Team, I am reaching out regarding a script I have implemented in Zoho FSM to automate the calculation of the End of Service date based on the End of Sale date in the Service and Parts module. Overview of the script: Fetches the End_of_Sale__C and
                                                                                                            • Seriously - Create multiple contacts for leads, (With Company as lead) Zoho CRM

                                                                                                              In Zoho CRM, considering a comapny as a lead, you need us to allow addition of more than one contact. Currently the Lead Section is missing "Add contact" feature which is available in "Accounts". When you know that a particular lead can have multiple
                                                                                                            • The Social Wall: August 2025

                                                                                                              Hello everyone, As summer ends, Zoho Social is gearing up for some exciting, bigger updates lined up for the months ahead. While those are in the works, we rolled out a few handy feature updates in August to keep your social media management running smoothly.
                                                                                                            • Ugh! - Text Box (Single Line) Not Enough - Text Box (Multi-line) Unavailable in PDF!

                                                                                                              I provide services, I do not sell items. In each estimate I send I provide a customized job description. A two or three sentence summary of the job to be performed. I need to be able to include this job description on each estimate I send as it's a critical
                                                                                                            • ZOHO BOOKS - EXCESSIVELY SLOW TODAY

                                                                                                              Dear Zoho Books This is not the first time but it seems to be 3 times per week now that the system is extremely slow. I work on Zoho Books 95% of my day so this is very frustrating. Zoho you need to do something about this. I have had my IT guy check
                                                                                                            • Allow to pick color for project groups in Zoho Projects

                                                                                                              Hi Zoho Team, It would be really helpful if users could assign colors to project groups. This would make it easier to visually distinguish groups, improve navigation, and give a clearer overview when managing multiple projects. Thanks for considering
                                                                                                            • Zoho Books - Quotes to Sales Order Automation

                                                                                                              Hi Books team, In the Quote settings there is an option to convert a Quote to an Invoice upon acceptance, but there is not feature to convert a Quote to a Sales Order (see screenshot below) For users selling products through Zoho Inventory, the workflow
                                                                                                            • Can't find imported leads

                                                                                                              Hi There I have imported leads into the CRM via a .xls document, and the import is showing up as having been successful, however - when I try and locate the leads in the CRM system, I cannot find them.  1. There are no filters applied  2. They are not
                                                                                                            • Custom Button Disappearing in mobile view | Zoho CRM Canvas

                                                                                                              I'm working in Zoho CRM Canvas to create a custom view for our sales team. One of the features I'm adding is a custom button that opens the leads address in another tab. I've had no issue with this in the desktop view, but in the mobile view the button
                                                                                                            • The connected workflow is a great idea just needs Projects Integrations

                                                                                                              I just discovered the connected workflows in CRM and its a Great Idea i wish it was integrated with Zoho Projects I will explain our use case I am already trying to do something like connected workflow with zoho flow Our requirement was to Create a Task
                                                                                                            • Rich Text For Notes in Zoho CRM

                                                                                                              Hello everyone, As you know, notes are essential for recording information and ensuring smooth communication across your records. With our latest update, you can now use Rich Text formatting to organize and structure your notes more efficiently. By using
                                                                                                            • Clone a Module??

                                                                                                              I am giong to repurpose the Vendors module but would like to have a separate but very similar module for another group of contacts called Buyers. I have already repurposed Contacts to Sellers. Is it possible to clone (make a duplicate) module of Vendors
                                                                                                            • Updating Subform Record from other Form

                                                                                                              Just wanted to ask how to properly approach this. I have 2 forms and would like to trigger an auto update on the subform once record submitted. block below only updates 1 row for each recordRow in input.AV_System { AssetRecord = Site_Asset_Services[SOR_No
                                                                                                            • Zoho Projects MCP Feedback

                                                                                                              I've started using the MCP connector with Zoho Projects, and the features that exist really do work quite well - I feel this is going to be a major update to the Zoho Ecosystem. In projects a major missing feature is the ability to manage, (especially
                                                                                                            • Function #10: Update item prices automatically based on the last transaction created

                                                                                                              In businesses, item prices are not always fixed and can fluctuate due to various factors. If you find yourself manually adjusting the item rates every time they change, we have the ideal time-saving solution for you. In today's post, we bring you custom
                                                                                                            • Office 365 and CRM mail integration: permission required

                                                                                                              Has anyone run into this weird problem? My email server is Office 365. When I try to configure Zoho CRM to use this server, a Microsoft popup window opens requesting user and password. After entering that, I get a message in the Microsoft window saying
                                                                                                            • Introducing Profile Summary: Faster Candidate Insights with Zia

                                                                                                              We’re excited to launch Profile Summary, a powerful new feature in Zoho Recruit that transforms how you review candidate profiles. What used to take minutes of resume scanning can now be assessed in seconds—thanks to Zia. A Quick Example Say you’re hiring
                                                                                                            • Inventory to Xero Invocie Sync Issues

                                                                                                              Has anyone had an issue with Invoices not syncing to Xero. It seems to be an issue when there is VAT on a shipping cost, but I cannot be 100% as the error is vague: "Unable to export Invoice 'INV-000053' as the account mapped with some items does not
                                                                                                            • email template

                                                                                                              How do I create and save an email template
                                                                                                            • Enhancements in Portal User Group creation flow

                                                                                                              Hello everyone, Before introducing new Portal features, here are some changes to the UI of Portals page to improve the user experience. Some tabs and options have been repositioned so that users can better access the functionalities of the feature. From
                                                                                                            • Archiving Contacts

                                                                                                              How do I archive a list of contacts, or individual contacts?
                                                                                                            • How do I filter contacts by account parameters?

                                                                                                              Need to filter a contact view according to account parameter, eg account type. Without this filter users are overwhelmed with irrelevant contacts. Workaround is to create a custom 'Contact Type' field but this unbearable duplicity as the information already
                                                                                                            • Can I add Conditional merge tags on my Templates?

                                                                                                              Hi I was wondering if I can use Conditional Mail Merge tags inside my Email templates/Quotes etc within the CRM? In spanish and in our business we use gender and academic degree salutations , ie: Dr., Dra., Sr., Srta., so the beginning of an email / letter
                                                                                                            • Zoho CRM button to download images from image upload field

                                                                                                              Hello, I am trying to create a button in Zoho CRM that I can place in my record details view for each record and use it to download all images in the image upload fields. I tried deluge, client scripts and even with a widget, but feel lost, could not
                                                                                                            • Unveiling Cadences: Redefining CRM interactions with automated sequential follow-ups

                                                                                                              Last modified on 01/04/2024: Cadences is now available for all Zoho CRM users in all data centres (DCs). Note that it was previously an early access feature, available only upon request, and was also known as Cadences Studio. As of April 1, 2024, it's
                                                                                                            • blank page after login

                                                                                                              blank page after logging into my email account Thanks you
                                                                                                            • Introducing the revamped What's New page

                                                                                                              Hello everyone! We're happy to announce that Zoho Campaigns' What's New page has undergone a complete revamp. We've bid the old page adieu after a long time and have introduced a new, sleeker-looking page. Without further ado, let's dive into the main
                                                                                                            • Function #9: Copy attachments of Sales Order to Purchase Order on conversion

                                                                                                              This week, we have written a custom function that automatically copies the attachments uploaded for a sales order to the corresponding purchase order after you convert it. Here's how to configure it in your Zoho Books organization. Custom Function: Hit
                                                                                                            • RingCentral/Zoho CRM integration

                                                                                                              Hi I would like to know if our RingCentral/Zoho CRM integration will record incoming calls from clients to my mobile number. I have both Ringcenral and Zoho CRM apps on my iPhone. I know it records the outgoing calls I make and shows them in Zoho CRM
                                                                                                            • Free webinar: Security that works: Building resilience for the AI-powered workforce

                                                                                                              Hello there, Did you know that more than 51% of organizations worldwide have experienced one or more security breaches, each costing over $1 million in losses or incident response? In today’s threat landscape, simply playing defense is no longer enough.
                                                                                                            • Range names in Zoho Sheet are BROKEN!

                                                                                                              Hi - you've pushed an update that has broken range names. A previously working spreadsheet now returns errors because the range names are not updating the values correctly. I've shared a video with the support desk to illustrate the problem. This spreadsheet
                                                                                                            • Cliq iOS can't see shared screen

                                                                                                              Hello, I had this morning a video call with a colleague. She is using Cliq Desktop MacOS and wanted to share her screen with me. I'm on iPad. I noticed, while she shared her screen, I could only see her video, but not the shared screen... Does Cliq iOS is able to display shared screen, or is it somewhere else to be found ? Regards
                                                                                                            • Retainer Invoice.

                                                                                                              Why ZOHO not have facilities to deduct partially advance payment from an invoice.
                                                                                                            • Cant Save Gauge on Creator Page

                                                                                                              How to Save Gauge on Creator Page see movie https://vimeo.com/1116410860?share=copy#t=0
                                                                                                            • Granular Email Forwarding Controls in Zoho Mail (Admin Console and Zoho One)

                                                                                                              Hello Zoho Mail Team, How are you? At present, the Zoho Mail Admin Console allows administrators to configure email forwarding for an entire mailbox, forwarding all incoming emails to another address. This is helpful for delegation or backup purposes,
                                                                                                            • Apply Advance option not shown in report

                                                                                                              We are facing an issue in Zoho Expenses. While approving an Expense Report, the "Apply Advance" option is not appearing under the three dots (More Options). Details: Module: Expense Reports Issue: "Apply Advance" option not visible Status of Report: Awaiting
                                                                                                            • Introducing Assemblies and Kits in Zoho Inventory

                                                                                                              Hello customers, We’re excited to share a major revamp to Zoho Inventory that brings both clarity and flexibility to your inventory management experience! Presenting Assemblies and Kits We’re thrilled to introduce Assemblies and Kits, which replaces the
                                                                                                            • Auto Capitalize First Letter of Words

                                                                                                              Hi I am completely new to ZOHO and am trying to build a database. How can i make it when a address is entered into a form field like this: main st it automatically changes is to show: Main St Thank You
                                                                                                            • Follow-up emails via Workflow Automation not staying in the same thread

                                                                                                              Dear Zoho Support Team, I am currently using Workflow Automation in Zoho Campaigns to send follow-up emails. In my test case, I noticed the following behavior: All emails in the automation have the same subject line. If the follow-up email is sent within
                                                                                                            • Next Page