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




                                    Zoho Desk Resources

                                    • Desk Community Learning Series


                                    • Digest


                                    • Functions


                                    • Meetups


                                    • Kbase


                                    • Resources


                                    • Glossary


                                    • Desk Marketplace


                                    • MVP Corner


                                    • Word of the Day



                                        Zoho Marketing Automation


                                                Manage your brands on social media



                                                      Zoho TeamInbox Resources

                                                        Zoho DataPrep Resources



                                                          Zoho CRM Plus Resources

                                                            Zoho Books Resources


                                                              Zoho Subscriptions Resources

                                                                Zoho Projects Resources


                                                                  Zoho Sprints Resources


                                                                    Qntrl Resources


                                                                      Zoho Creator Resources



                                                                          Zoho Campaigns 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 to Record Loan with interest

                                                                                                    I have received loans from friend he give me like 2 loans so far one is one year repayment and one short, how to properly record his payment, and repayment and give him statement  for each loan he give me 
                                                                                                  • Task status - completed - other options

                                                                                                    I have a dumb question I know i can make custom statuses for the tasks - but is there anyway to make additional "completed" statuses like for instance if i have a task "call back customer" and i leave a vm for them to call back marking it "completed -
                                                                                                  • Task module and related-to field

                                                                                                    In modules other than the Task Module I can add several lookup fields to provide a variety of relationships. In the Task module lookup fields are not available. There is only one "related to" field which I want to use for Company. But I want to relate
                                                                                                  • Zoho Assist "Agree and Download" Button "Greyed Out" ("Light Blued" Out)

                                                                                                    Anyone else having issue where support clients are unable to click "Agree and Download" to access the client so that we can provide remote support? This is for "on demand" support via accessing the support page and entering the support key and name. This
                                                                                                  • Add Lookup Field in Tasks Module

                                                                                                    Hello, I have a need to add a Lookup field in addition to the ones that are already there in the Tasks module. I've seen this thread and so understand that the reason lookup fields may not be part of it is that there are already links to the tables (https://help.zoho.com/portal/en/community/topic/custom-fields-on-task-module).
                                                                                                  • migrating from Zoho Invoices (CRM) to Zoho Books

                                                                                                    Good day, I was wondering if there was a easy way to migrate all the quotes and invoices from Zoho Invoices CRM to Zoho Books. We plan to move to using Zoho Books in a few weeks and would like to have all the quotes and invoices from the past 3 years
                                                                                                  • Zoho MA and Custom Module

                                                                                                    I am trying to create a sync between Markting Automation and Zoho CRM. I am mapping a custom module from the CRM. The custom module has email field mobile phone field However I cannot finish the integration since the system keeps asking me for email or
                                                                                                  • When is partial reimbursement going to be launched?

                                                                                                    Hi there. I saw somewhere that the partial reimbursement feature is in the work. What is the update and ETA of that? Our clients and prospects have been asking us and we agree that that is an important feature to have.
                                                                                                  • All notes disappeared

                                                                                                    I've been using the notebook app for over five years on my phone without being logged into an account. A few days ago I opened the app and all my notes had disappeared. Since then I tried restarting my phone, updating the app and logging into my account,
                                                                                                  • Introducing Keyboard Shortcuts for Zoho CRM

                                                                                                    Dear Customers, We're happy to introduce keyboard shortcuts for Zoho CRM features! Until now, you might have been navigating to modules manually using the mouse, and at times, it could be tedious, especially when you had to search for specific modules
                                                                                                  • Year-End Wrap: Declutter Your Inbox Using Email Filters

                                                                                                    Ping!—an email drops in. And another. And another! It's finally that time of the year when your inbox will be bursting with messages from team members, clients, and marketing agents, leaving you feeling overwhelmed and distracted. Sounds familiar? Now
                                                                                                  • Unified Notes View For Seamless Collaboration

                                                                                                    To facilitate better coordination among different departments and team members, the notes added to a record can now be accessed in all its associated records. With this, team members, from customer service representatives to field technicians, can easily
                                                                                                  • Q4 Europe In-person Zoho User Group Meetup: Streamlining Your Business Processes & Introduction to Zoho CRM for Everyone

                                                                                                    Hello Zoho Community, We are excited to announce our upcoming Zoho User Group meetup in Europe! This session is designed to help you streamline your business processes using Zoho CRM, with a special focus on enhancing customer interactions and leveraging
                                                                                                  • Formula fields - Request for dynamic recalculation / proper implementation

                                                                                                    Hi Guys, I have a big problem with Zoho formula fields. They don't recalculate each time the record is viewed - only when a record is edited. Formula fields should be updated dynamically each time a record is retrieved. As an example: I have a formula
                                                                                                  • Items attribute questions

                                                                                                    Many of my items have attributes, such as size and color. How can I add new fields to the "New Items" screen to capture that in my Purchase Orders, Items, and Sales Order pages? I only see these attribute fields when adding an Item Group. Also, on the
                                                                                                  • Organize and Track Phases with Phase Custom Views

                                                                                                    Phase Custom Views let you filter and display phases based on specific criteria. This helps you focus on what’s most relevant for you and your team. Filter phases using criteria such as budget, status, and more. Share views with specific users or teams
                                                                                                  • Record Asset Received as Payment

                                                                                                    How exactly would you account for this in books? For example, I receive a mini computer for a review and I get to keep it after the video is published. Would debit my normal asset account (e.g. Computers) and credit an income account (e.g. Other Income).
                                                                                                  • Invoice Line Item Report

                                                                                                    Is it possible to run an 'Invoice Line Item Report'? The 'Invoice Details Report' shows one row per invoice. I would like one row per Invoice Line Item.
                                                                                                  • Transform Your Customer Support with AI-Powered Chatbots in Zoho SalesIQ

                                                                                                    Ever wondered how some companies seem to have superhuman customer support? Let's uncover their secret! In the digital age, customer expectations are skyrocketing. Did you know that according to McKinsey, 75% of consumers expect a response within five
                                                                                                  • Unused items should not count into the available number of custom fields

                                                                                                    Hey, I realized that unused Items reduce the number of available custom fields. I can't see a case where that makes sense. Especially in our case where we have two different layouts in Deals with a lot of different fields, this causes problems.
                                                                                                  • Power of Automation :: Automatically start / pause / stop timer on task status update.

                                                                                                    Hello Everyone, A Custom function is a user-written set of code to achieve a specific requirement. Set the required conditions needed as when to trigger using the Workflow rules (be it Tasks / Project) and associate the custom function to it. Requirement:-
                                                                                                  • Progressive Invoicing

                                                                                                    Progressing invoicing is needed for many industries. It would be great to see it implemented into Zoho Books as well. Set up and send progress invoices in QuickBooks Desktop (intuit.com)
                                                                                                  • Client Script - mapping data from different module

                                                                                                    Dear ZOHO Team Firstly I need to describe the need - I need to have data from Contacts module based on lookup field - the 5 map limit is not enough for me because I have almost 20 fields to copy So I have decided to make a Customer Script - and from unknown
                                                                                                  • Using Queries with dynamic parameters in Kiosk Studio

                                                                                                    Hi, I'm pretty new when it comes to developing within Zoho (I'm really a .NET developer), as it was just added to my responsibilities. For a new feature in the CRM, I'm trying to develop a Kiosk function to show a list of records (retrieved by the new
                                                                                                  • DORA compliance

                                                                                                    For DORA (Digital Operational Resilience Act) compliance, I’ll want to check if Zoho provides specific features or policies aligned with DORA requirements, particularly for managing ICT risk, incident reporting, and ensuring operational resilience in
                                                                                                  • Files Uploaded to Zoho WorkDrive Not Being Indexed by Search Engines

                                                                                                    Hello, I have noticed that the files I upload to Zoho WorkDrive are not being indexed by search engines, including Google. I’d like to understand why this might be happening and what steps I can take to resolve it. Here are the details of my issue: File
                                                                                                  • Zoho Creator Upcoming Updates - December 2024

                                                                                                    Hi all, We're excited to be back with the latest updates and developments on the Creator platform. Here's what we're going over this month: Deluge AI assistance Rapid error messages in Deluge editor QR code & barcode generator Expandable RTF and multi
                                                                                                  • Customer can't comment on SO or Invoice

                                                                                                    Hi I just saw that my customers are not able to submit a comment either on invoices or sales order. What happens if my customer hits submit is just nothing. only a red line appears on top of the page which probalby indicates an error. I'm not able to
                                                                                                  • Zoho Creator customer portal limitation | Zoho One

                                                                                                    I'm asking you all for any feedback as to the logic or reasoning behind drastically limiting portal users when Zoho already meters based on number of records. I'm a single-seat, Zoho One Enterprise license holder. If my portal users are going to add records, wouldn't that increase revenue for Zoho as that is how Creator is monetized? Why limit my customer portal to only THREE external users when more users would equate to more records being entered into the database?!? (See help ticket reply below.)
                                                                                                  • See Calendar When Creating Meetings On Record Page

                                                                                                    It would be a great user experience to see you calendar while you are creating a meeting on a record page. Here is how I imagine it could look:
                                                                                                  • Power of Automation: Automatically send an email to all portal users with today's list of Open tasks.

                                                                                                    Hello Everyone, A Custom Function is a user-written set of code to achieve a specific requirement. Set the required conditions needed as to when to trigger using the Workflow rules (be it Tasks / Project) and associate the custom function to it. Requirement:-
                                                                                                  • Introduction of Robotics Process Automation in Zoho products

                                                                                                    It will be great if Zoho can start advancing from automation to robotics process automation. For a start, it can be started with smart document understanding. Provide OCR engines Google cloud, Microsoft Azure Computer vision OCR, Microsoft OCR, Omnipage
                                                                                                  • Lock a custom field on a deal record but keep all other fields editable?

                                                                                                    I have a custom field, which auto-populates a job number upon converting a lead to a deal but the automation breaks if someone accidentally edits that field. I want to lock that field but keep all other fields open. Is this possible? I've tried through
                                                                                                  • how to create a new line in string in Client Script?

                                                                                                    I want to show an alert using client script, I need to add a new line in String, I assume I can use \n\n inside a string, but unfortunately it doesnt work ZDK.Client.showAlert("First Line \n\nI expect this is in second line");
                                                                                                  • Add Feature To Hide Plugin Sections On Record View

                                                                                                    Hi team, I'm trying to help a client tidy up their CRM. When it comes to record view some sections and fields are visible no matter what Layout Rules are applies and they are not removeable from the layout editor. I would like to see an option to hide
                                                                                                  • Creator Simplified #10: Predefine Form Field Values and Make Them Read-Only for Users

                                                                                                    Hey Creators, Ready for this week's tip in the Creator Simplified series? Today, we will explore how to have read only fields in a form. Use Case: Assume a scenario where the default value for a Department field needs to be English Literature, but you
                                                                                                  • Problem configuring/customizing sales pipeline steps

                                                                                                    Hello, I have created several sales pipelines with different stages in them. Unfortunately I forgot to properly configure these steps (conversion probability, forecast category). How can I modify and customize all these steps? Thnak you by advance M
                                                                                                  • fetch records from analytics table from creator

                                                                                                    I have a creator workflow that I am working in that will compare data from within the app to a table in zoho analytics. Is there a way to fetch a record from Analytics? I have attempted a custom connector with analytics and tried to use it with invoke
                                                                                                  • Directly Edit, Filter, and Sort Subforms on the Details Page

                                                                                                    Hello everyone, As you know, subforms allow you to associate multiple line items with a single record, greatly enhancing your data organization. For example, a sales order subform neatly lists all products, their quantities, amounts, and other relevant
                                                                                                  • Ability to Change Custom View After Cadence Creation

                                                                                                    Dear Zoho Team, I hope you are well. We would like to request an enhancement to the Cadence feature in Zoho CRM. Currently, during the creation of a Cadence, we can select a Custom View under the "Who is this for?" section. However, once the Cadence is
                                                                                                  • Next Page