Kaizen 143 Assigning values to different field types using Zoho CRM SDKs

Kaizen 143 Assigning values to different field types using Zoho CRM SDKs


Welcome to another week of our Kaizen series! Today, we will discuss a critical aspect of working with Zoho CRM SDKs across various programming languages: assigning values to fields of different data types. 

Zoho CRM offers a comprehensive suite of SDKs for PHP, Java, Node.js, C#, Python, Ruby, TypeScript, Scala, and JavaScript, streamlining development workflows across various programming languages. Today's discussion will provide you with the knowledge to handle various data types and their assignment across our different SDK languages.  By the end, you will be well-equipped to utilize the sample codes in our GitHub repository and tailor them to your specific CRM needs.

Data Types in Zoho CRM

In Zoho CRM modules, a variety of field types are available, enabling you to collect and manage a broad spectrum of customer data. Here's a quick reference summarizing the common data types:

  • text : Used for short text entries like names, addresses, or short descriptions, the text field is a string type field that can store up to 255 characters, including alphanumeric characters and special characters.
  • textarea (multiline) : Used for longer text entries, the multiline field in Zoho CRM is a string field that supports alphanumeric and special characters up to 32000 characters, making it suitable for storing extensive content such as terms and conditions or detailed descriptions.
  • email : Used to store email addresses, ensuring proper format and validation.
  • phone : Used to store valid phone numbers with up to 30 characters, ensuring proper format and validation.
  • picklist : Lets you choose a value from a set of predefined options, accepting all alphanumeric and special characters
  • multiselectpicklist : Allows you to select multiple valuesfor the field, accepting all alphanumeric and special characters.
  • date :  This field accepts date in yyyy-MM-dd format.
  • datetime : This field accepts both date and time information in yyyy-MM-ddTHH:mm:ss±HH:mm format.
  • integer (number) : This field is a 32-bit signed integer that accepts up to 9 digits.
  • currency : Used for amount fields, this field is stored as a 64 bit signed floating point, and accepts up to 16 digits. Refer here for more details on the available rounding options.
  • double : Used for decimal numbers, useful for number and calculations requiring precision, this field is stored as a 64-bit signed floating-point.
  • percent : Used for percentage values and accepts up to 5 characters, including the sign and decimal point.
  • bigint (long integer) : This field is a 64-bit signed integer, that accepts up to 18 digits.
  • boolean (checkbox) : Used for boolean values, ie, true/false.
  • website (URL) : Accepts valid URLs with alphanumeric characters, up to 450 characters in length.
  • lookup : Used to create a relationship between records. In our APIs, this field will be represented as a JSON Object containing the id and the display label.
  • multiselectlookup : This field allows you to create a many-to-many relationship between two modules in Zoho CRM. When you use a multiselectlookup field, linked records are stored in a separate module with lookup fields that reference the two related modules.
  • userlookup :  Used to establish a lookup to the user module. In our APIs, this field is represented as a JSON Object containing the id and the display label.  The linked records are stored in a separate module, containing lookup fields for the two related modules.
  • ownerlookup : Used to identify and assign the record's ownership to a specific user within the organization.
  • multi_user_lookup : Allows association of multiple users to a module record.
  • subform : A secondary form or table that enables you to add multiple line items to a primary form or record.  A separate module will be automatically created for the subform, with a lookup pointing to the parent module.
  • imageupload : Used to associate images with a record.
  • fileupload : Used to associate files with a record.
  • multi_module_lookup : Used to establish lookup relationships with more than one module.

Leveraging Samples from the Zoho CRM GitHub Repository

To help you get started with the Zoho CRM SDKs, we have provided several sample codes on our GitHub repository. These samples cover various methods available and demonstrate how to access and manage your Zoho CRM data using our SDKs. 
Within the SDK repository, navigate to the Samples directory. Here, you will find a collection of subfolders corresponding to the various Zoho CRM API operations, each containing sample code files that demonstrate how to perform the specific API operation it represents. Consider these files as a launchpad for your development journey. Feel free to adapt them to your specific requirements by making necessary changes. For instance, if your requirement involves creating or updating records, check out the Records subfolder and adjust the code to fit your needs.
In the following sections, we will explain how to assign values to different field types using our SDKs. By combining this information with the sample codes provided in our GitHub repository, you will be able to tailor the solutions to meet your specific requirements.

Assigning Values to Different Field Types using Zoho CRM SDKs

While our GitHub repository provides sample code for various methods, you might need more specific guidance on assigning values to different field data types. In this section, we will discuss how to assign values and handle null values for each field data type across all our supported SDK languages.

1. JAVA SDK

For more details on our JAVA SDK, please refer to our GitHub repository for the latest Java SDK . Check out the sample codes here .

Zoho CRM's Java SDK lets you manage both standard and custom fields within records.

Standard Fields:

Standard fields are pre-defined fields available in Zoho CRM modules. To manage standard fields using our JAVA SDK, you should follow these steps:
a. Import the Module Field Class:
import com.zoho.crm.api.record.Field;

b. Assign Values to Standard Fields:
The syntax for assigning values to standard fields uses the setFieldValue method of the Record object:
record.addFieldValue(Field.{module_api_name}.{FIELD_API_NAME},value);

Replace {module_api_name} and {FIELD_API_NAME} with the appropriate values for your specific use case. Please note that the FIELD_API_NAME should always be uppercase.

Assigning values to Standard Fields:

Field Type

JSON Type
Assign Values
Assign Null Values
text (single line)
string 
record.addFieldValue(Field.Leads.LAST_NAME, "Last Name");
record.addFieldValue(Field.Leads.LAST_NAME, null);
textarea (multiline)
string
record.addFieldValue(Field.Leads.DESCRIPTION, "Last Name");
record.addFieldValue(Field.Leads.DESCRIPTION, null);
email
string
record.addFieldValue(Field.Leads.EMAIL, " abc@zoho.com");
record.addFieldValue(Field.Leads.EMAIL, null);
phone
string
record.addFieldValue(Field.Leads.PHONE, "91(987)654321");
record.addFieldValue(Field.Leads.PHONE, null);
picklist
string
record.addFieldValue(Field.Leads.LEAD_STATUS, new Choice<String>("Not Contacted"));
--
date
string
record.addFieldValue(Field.Products.SALES_START_DATE, LocalDate.of(2024, 6, 13));
record.addFieldValue(Field.Products.SALES_START_DATE, null);
integer (number)
integer
record.addFieldValue(Field.Accounts.EMPLOYEES,100);
record.addFieldValue(Field.Accounts.EMPLOYEES,null);
currency (double)
double
record.addFieldValue(Field.Leads.ANNUAL_REVENUE, 10.00);
record.addFieldValue(Field.Leads.ANNUAL_REVENUE, null);
boolean (checkbox)
boolean
record.addFieldValue(Field.Leads.EMAIL_OPT_OUT, true);
--
website (URL)
string
record.addFieldValue(Field.Leads.WEBSITE, " https://www.zoho.com");
record.addFieldValue(Field.Leads.WEBSITE, null);
multi_module_lookup
JSON Object
com.zoho.crm.api.record.Record record1 = new com.zoho.crm.api.record.Record();
record1.setId(3477061000021552002l);
HashMap<String, String> module = new HashMap<String, String>();
module.put("id", "3477061000000002179");
module.put("api_name", "Contacts");
record1.addKeyValue("module", module); record.addFieldValue(Field.Appointments__s.APPOINTMENT_FOR, record1);
--

Custom Fields:

Zoho CRM's flexibility extends to custom fields, allowing you to create additional fields specific to your business needs. Here's how to manage them using the Java SDK:
a. Import the Record Class:
com.zoho.crm.api.record.Record record = new com.zoho.crm.api.record.Record();

b. Assign Values to Custom Fields:
The syntax for assigning values to standard fields uses the addKeyValue method of the Record object:
record.addKeyValue("{field_api_name}", value);
Replace {field_api_name} with the appropriate values for your specific use case. 

Assigning values to Custom Fields:

Field Type

JSON Type
Assign Values
Assign Null Values
text (single line)
string 
record.addKeyValue("Single_Line_Field", "Single Line Text Value");record.addKeyValue("Single_Line_Field", null);
textarea (multiline)
string
record.addKeyValue("Multi_Line_Field", "Text Multi Line 2");record.addKeyValue("Multi_Line_Field", null);
email
string
record.addKeyValue("Email_Field", " abc@zoho.com");record.addKeyValue("Email_Field", null);
phone
string
record.addKeyValue("Phone_Field", "9900000000");record.addKeyValue("Phone_Field", null);
picklist
string
record.addKeyValue("Pick_List_Field", new Choice<String>("Option 1"));
record.addKeyValue("Pick_List_Field", null);
multiselectpicklist
JSON array
record.addKeyValue("Multi_Select_Field", new ArrayList<>(Arrays.asList(new Choice<String>("Option 1"), new Choice<String>("Option 2"))));
 record.addKeyValue("Multi_Select_Field", null);
date
string
record.addKeyValue("Date_Field", LocalDate.of(2024, 6, 13));record.addKeyValue("Date_Field", null);
datetime
string
record.addKeyValue("Date_Time_Field", OffsetDateTime.of(2024, 06, 20, 10, 00, 01, 00, ZoneOffset.of("+05:30")));
record.addKeyValue("Date_Time_Field", null);
integer (number)
integer
record.addKeyValue("Number_Field", 12);record.addKeyValue("Number_Field", null);
currency (double)
double
record.addKeyValue("Currency_Field", 10.25);record.addKeyValue("Currency_Field", null);
double
double
record.addKeyValue("Decimal_Field", 12.25);
record.addKeyValue("Decimal_Field", null);
percent 
double
record.addKeyValue("Percent_Field", 12.25);
record.addKeyValue("Percent_Field", null);
bigint (long integer)
string
record.addKeyValue("Long_Integer_Field", 12345678l);
record.addKeyValue("Long_Integer_Field", null);
boolean (checkbox)
boolean
record.addKeyValue("Checkbox_Field", true);
--
website (URL)
string
record.addKeyValue("URL_Field", " https://www.zoho.com");record.addKeyValue("URL_Field", " https://www.zoho.com");
lookup
JSON Object
com.zoho.crm.api.record.Record account = new com.zoho.crm.api.record.Record();
account.setId(3477061000023362051l);
record1.addKeyValue("Lookup_Field", account);
--
multiselectlookup
JSON Object
List<com.zoho.crm.api.record.Record> multirecords = new ArrayList<>();
com.zoho.crm.api.record.Record record1 = new com.zoho.crm.api.record.Record();
com.zoho.crm.api.record.Record linkingRecord = new com.zoho.crm.api.record.Record();
record1.addKeyValue("id", 3477061000023362051L);
linkingRecord.addKeyValue("Multi_Select_Lookup_Field", record1);
multirecords.add(linkingRecord);
record.addKeyValue("Multi_Select_Lookup_Field", multirecords);
List<com.zoho.crm.api.record.Record> multirecords = new ArrayList<>();
com.zoho.crm.api.record.Record linkingRecord = new com.zoho.crm.api.record.Record();
linkingRecord.addKeyValue("_delete", true);
linkingRecord.addKeyValue("id", 3477061000023479001l);
multirecords.add(linkingRecord);
record.addKeyValue("Multi_Select_Lookup_Field", multirecords);
userlookup
JSON object
com.zoho.crm.api.users.MinifiedUser user = new com.zoho.crm.api.users.MinifiedUser();
user.setId(3477061000005791024l);
record.addKeyValue("User_Field", user);
record.addKeyValue("User_Field", null);
multiuserlookup
JSON array
List<com.zoho.crm.api.record.Record> multiuser = new ArrayList<>();
com.zoho.crm.api.record.Record record1 = new com.zoho.crm.api.record.Record();
com.zoho.crm.api.users.MinifiedUser linkingRecord = new com.zoho.crm.api.users.MinifiedUser();
linkingRecord.setId(3477061000005791024l);
record1.addKeyValue("MultiUser", linkingRecord);
multiuser.add(record1);
record.addKeyValue("MultiUser", multiuser);
List<com.zoho.crm.api.record.Record> multiuser = new ArrayList<>();
com.zoho.crm.api.record.Record record1 = new com.zoho.crm.api.record.Record();
record1.addKeyValue("_delete", true);
record1.setId(3477061000023490004l);
multiuser.add(record1);
record.addKeyValue("MultiUser", multiuser);
subform
JSON array
List<com.zoho.crm.api.record.Record> subformList = new ArrayList<com.zoho.crm.api.record.Record>();
com.zoho.crm.api.record.Record subform = new com.zoho.crm.api.record.Record();
subform.addKeyValue("Name", "SDK");
com.zoho.crm.api.users.MinifiedUser user1 = new com.zoho.crm.api.users.MinifiedUser();
user1.setId(3477061000018959001l);
subform.addKeyValue("User_Field", user1);
subformList.add(subform);
record.addKeyValue("Subform_Field", subformList);
List<com.zoho.crm.api.record.Record> subformList = new ArrayList<com.zoho.crm.api.record.Record>();
com.zoho.crm.api.record.Record subform = new com.zoho.crm.api.record.Record();
subform.addKeyValue("_delete", true);
subform.setId(3477061000023502001l);
subformList.add(subform);
record.addKeyValue("Subform_Field", subformList);
imageupload
JSON array
List<ImageUpload> imageUploads = new ArrayList<ImageUpload>();
ImageUpload imageUpload = new ImageUpload();
imageUpload.setFileIdS("18aed780ff77c8698406d1befdb1341435");
imageUploads.add(imageUpload);
record.addKeyValue("Image_Upload", imageUploads);
List<ImageUpload> imageUploads = new ArrayList<ImageUpload>();
ImageUpload imageUpload = new ImageUpload();
imageUpload.setDelete(null);
imageUpload.setId("3477061000023502009");
imageUploads.add(imageUpload);
record.addKeyValue("Image_Upload", imageUploads);
fileupload
JSON array
List<FileDetails> fileDetails = new ArrayList<FileDetails>();
FileDetails fileDetail1 = new FileDetails(); fileDetail1.setFileIdS("ed69c3580d797bc");
fileDetails.add(fileDetail1);
record.addKeyValue("File_Upload", fileDetails);
List<FileDetails> fileDetails = new ArrayList<FileDetails>();
FileDetails fileDetail1 = new FileDetails();
fileDetail1.setDelete(null);
fileDetail1.setId("3477061000023499013");
fileDetails.add(fileDetail1);
record.addKeyValue("File_Upload", fileDetails);
multi_module_lookup
JSON Object
com.zoho.crm.api.record.Record record1 = new com.zoho.crm.api.record.Record();
record1.setId(3477061000021552002l);
HashMap<String, String> module = new HashMap<String, String>();
module.put("id", "3477061000000002179");
module.put("api_name", "Contacts");
record1.addKeyValue("module", module);
record.addKeyValue("Appointment_For", record1);
--

In the next week Kaizen, we will discuss how to handle field data types for the remaining SDKs.

We hope this guide has provided valuable insights into managing different field data types using Zoho CRM SDKs. By combining the information shared in this post with the sample codes provided in our GitHub repository, you will be well-equipped to tailor solutions to meet your specific requirements. 

Do you have any specific topics that you'd like us to address in our Kaizen series? We are here to help! Feel free to share your suggestions in the comments below or reach out to our support team directly at support@zohocrm.com

Thank you for joining us this week. Happy Coding!!


Recommended Reads:



Previous Post : How to navigate to another page using Client Script | Kaizen Collection : Home

Join us for our upcoming Zoho CRM Developer Series: Zoho CRM APIs, where you can explore more about Zoho CRM APIs. Register Now!

    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




                                                            • Sticky Posts

                                                            • Kaizen #197: Frequently Asked Questions on GraphQL APIs

                                                              🎊 Nearing 200th Kaizen Post – We want to hear from you! Do you have any questions, suggestions, or topics you would like us to cover in future posts? Your insights and suggestions help us shape future content and make this series better for everyone.
                                                            • Kaizen #198: Using Client Script for Custom Validation in Blueprint

                                                              Nearing 200th Kaizen Post – 1 More to the Big Two-Oh-Oh! Do you have any questions, suggestions, or topics you would like us to cover in future posts? Your insights and suggestions help us shape future content and make this series better for everyone.
                                                            • Celebrating 200 posts of Kaizen! Share your ideas for the milestone post

                                                              Hello Developers, We launched the Kaizen series in 2019 to share helpful content to support your Zoho CRM development journey. Staying true to its spirit—Kaizen Series: Continuous Improvement for Developer Experience—we've shared everything from FAQs
                                                            • Kaizen #193: Creating different fields in Zoho CRM through API

                                                              🎊 Nearing 200th Kaizen Post – We want to hear from you! Do you have any questions, suggestions, or topics you would like us to cover in future posts? Your insights and suggestions help us shape future content and make this series better for everyone.
                                                            • Client Script | Update - Introducing Commands in Client Script!

                                                              Have you ever wished you could trigger Client Script from contexts other than just the supported pages and events? Have you ever wanted to leverage the advantage of Client Script at your finger tip? Discover the power of Client Script - Commands! Commands


                                                            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 to see history on Bulk send of Customer Statements

                                                                                                              Hi, We bulk send statements to customers every month via Books - every month we have customers emailing requesting a statement. Currently I have no visibility on if a customer was sent the statement or not and if our process is being followed or overlooked
                                                                                                            • Guided Conversations - Ticket Creation

                                                                                                              Hi there, Using Guided Conversations to Take Customer Data and apply it into a Support Ticket for internal use, Is there a way to take multiple Textual Variables Inputs (A series of questions), and have the answers all appear in the Description of the
                                                                                                            • How to add buttons elements in the Header

                                                                                                              I am trying to add CTA (Call to Action) buttons in the right side of the main navigation menu. This is a common practice for sites but I can't seem to figure this out for Zoho Sites. Is there a custom workflow that could be shared with me? 
                                                                                                            • Automatic back up - Zoho Recruit, books, people,crm, analytics

                                                                                                              Hello, Has anyone found a good way of automatically backing up Zoho (CRM, expense, recruit, people, books, analytics).? I have found with tool that does, but it doesn't include recruit or analytics It's a bit annoying and time consuming having to go to
                                                                                                            • delete departments on zoho desk

                                                                                                              I created test departments on zoho desk. how can i delete them now?
                                                                                                            • Validation, checking if a file has been attached to the ticket

                                                                                                              A very useful option would be to allow checking, under specific conditions, whether the user has attached a file to the application, e.g., a bug report. Some applications require files to be attached, and the system could enforce this after the system
                                                                                                            • AI & Zoho Recruit

                                                                                                              Hello, I guess we all are using AI in our personal and professional lives. Now, let's imagine. Recruitment is just a succession of stages and steps. For which step would you like to see AI implemented into Zoho Recruit ? I'll start : - Automatic translation
                                                                                                            • Zoho Flow not handling Boolean properly

                                                                                                              Hi, I have a checkbox in one system that I'm trying to sync with a checkbox in Zoho CRM. The value from the source system comes in as blank (unticked) or 1 (ticked). I've written the following custom function to convert the output to either boolean false
                                                                                                            • Quotes Module - import data

                                                                                                              Hello Zoho, is it possible to import Quotes records? I was trying and i have no results. Raport shows no data imported. Could you help me please how to do it?
                                                                                                            • Balance Sheet - Zoho Analytics

                                                                                                              Hi Team, I’m looking to implement a feature that captures the conversion rate based on the filters applied. By default, it should fetch the most recent conversion rate, and when a filter (such as a timeline filter) is applied, it should return the conversion
                                                                                                            • files sent will not open for recipient

                                                                                                              work files (done in writer) which previously opened will not open for the recipient
                                                                                                            • How to Print the Data Model Zoho CRM

                                                                                                              I have created the data model in Zoho CRM and I want the ability to Print this. How do we do this please? I want the diagram exported to a PDF. There doesnt appear to be an option to do this. Thanks Andrew
                                                                                                            • Cisco Webex Calling Intergration

                                                                                                              Hi Guys, Our organisation is looking at a move from Salesforce to Zoho. We have found there is no support for Cisco Webex Calling however? Is there a way to enable this or are there any apps which can provide this? Thanks!
                                                                                                            • Migration of Mails from Pipedrive

                                                                                                              Hi, so far the migration from Pipedrive to ZOHO works pretty good. For full completeness of the migration we miss all the mails linked to Deals, Contacts, Customers, ... What possibilities do we have to have Pipedrive fully migrated to ZOHO? Best Regards,
                                                                                                            • Published sheets don't work anymore

                                                                                                              Hi, Published sheets don't work anymore. The display of values is very very slow and calculations are not displayed at all. Thanks!
                                                                                                            • WorkDrive TrueSync for macOS 26 (Tahoe) Beta

                                                                                                              Hello everyone, With Apple unveiling the macOS 26 (Tahoe) Beta, we know many of you are eager to explore the latest features and enhancements. We’re excited to support your enthusiasm! As part of our commitment to delivering seamless cross-platform experiences,
                                                                                                            • Limited layout rules in a module

                                                                                                              There is a limit of 10 layout rules per module. Is there a way to get that functionality through different customization or workflow + custom function (easily accessible), etc. Having just 10 is limiting especially if module contains a lot of data. Are
                                                                                                            • #1 Zoho Billing vs. Zoho Books: Which one should I choose?

                                                                                                              Managing your business finances isn't just about sending invoices. It's about keeping everything organized, accurate, and moving towards your organization's goals. At Zoho, we understand the complexity, which is why we offer two powerful yet distinct
                                                                                                            • Is Zoho tables still being developed?

                                                                                                              Has this product been abandoned? I haven't seen any useful new features or stability improvements over the past six months or more. I think Tables is a great concept, filling a niche between spreadsheets and full database tools, but the current implementation
                                                                                                            • How to connect oracle ADW with Analytics

                                                                                                              I want to add Oracle ADW as a data source in Zoho Analytics, but I couldn't find any relevant documentation. Can anyone suggest how to do it, or let me know if it's even possible? Thanks!!
                                                                                                            • RAG (Retrieval Augmented Generation) Type Q+A Environment with Zoho Learn

                                                                                                              Hi All, Given the ability of Zoho Learn to function as a knowledge base / document repository type solution and given the rapid advancements that Zoho is making with Zia LLM, agentic capabilities etc. (not to mention the rapid progress in the broader
                                                                                                            • add attachments to automated emails?

                                                                                                              Hi, I'm looking for a way to have documents saved under an account, be grabbed and sent to an email address once a specific status has been updated.  For example we have a tab we've labeled as sales orders, when the status is changed to shipped, it emails the customer the tracking number and estimated delivery date.  I'd like it to also grab pdf docs (COA, BOL, etc) from that order and send in that email.   Currently we have to go into zoho change the status to shipped, then email all the docs to
                                                                                                            • [Action Required] Zendesk - Zoho Analytics integration requires re-authentication

                                                                                                              Dear Zendesk integration users, Zendesk is transitioning to a new OAuth model that uses refresh tokens for improved security and stability (read more). As a result, all Zendesk users in Zoho Analytics must re-authenticate their Zendesk connections on
                                                                                                            • Rerun Migration?

                                                                                                              I migrated a mailbox a few days ago, but didn't do the cutover on the MX records until today.  How can I rerun the migration to sync the mailboxes?  The old account has had a fair amount of activity since the first migration. I am used to other systems
                                                                                                            • طلب حذف الدومين والمؤسسة من حساب zoho

                                                                                                              السلام عليكم، أود طلب حذف الدومين التالي من حسابي في Zoho، حيث لا يظهر لي خيار الحذف في لوحة التحكم: اسم الدومين: hudajstore.com البريد المرتبط: [contact@hudajstore.com] علمًا بأنني المسؤول عن المؤسسة، ولا أستخدم الدومين حاليًا، وأرغب في إلغاء ربطه وحذف
                                                                                                            • Microsoft Outlook Add-in Update: Enhancing Efficiency for Recruiters

                                                                                                              We've released an update to the Zoho Recruit Microsoft Outlook Add-in, which brings a host of features designed to streamline your recruiting process and boost productivity. Let's delve into the details: Associate Emails with records in Zoho Recruit You
                                                                                                            • New integration: Zoho Books + Zoho Forms

                                                                                                              Hello Zoho Forms community! We are thrilled to announce the addition of another integration that brings speed and efficiency to your financial workflows. Zoho Forms can now be integrated with Zoho Books! Here’s a quick rundown on Zoho Books! For anyone
                                                                                                            • Witness Sign - Automation with Zoho Creator

                                                                                                              Hi there, I used to be able do automatically send a Zoho Sign document from Zoho Creator where each signer had one witness. The action code was as follows for each signer and witness:       // CLIENT eachActionMap1 = Map(); eachActionMap1.put("signing_order","1");
                                                                                                            • Announcing: custom color palette + free workshop

                                                                                                              Hello everyone, We're excited to share new feature in Zoho Bookings—a color palette within booking page themes. You'll find this option under Manage Bookings > Workspaces > Booking Page Themes. You can customize the color of every element in your booking page and even alter the transparency of your background image. Please note that this is a paid feature included in the Basic and Premium plans. At the moment, it's available only under the Modern Web theme. This means you can create billions (7,
                                                                                                            • Removing To or CC Addresses from Desk Ticket

                                                                                                              I was hoping i could find a way to remove unnecessary email addresses from tickets submitted via email. For example, a customer may email the support address AND others who are in the helpdesk notification group, in either the TO or CC address. This results
                                                                                                            • Ability to Export Field Dependency Structure in Zoho Desk

                                                                                                              Hi Zoho Team, We’d like to request a feature enhancement in Zoho Desk that would greatly improve configuration management for organizations like ours: Requested Feature: The ability to export the full structure of Field Dependencies, especially for multi-level
                                                                                                            • [URGENT] Allow reorder (drag&drop) of subform record

                                                                                                              Very simple user case: a wedding planning app where you want to send your client a form to fill with information about their wedding. Form includes some field for general purpose information and a subform for event pacing/schedule. Clients are invited to create a new row (When? - What? - Where? - Who?) for each thing happening during their wedding chronologically. Ex: When                  What 10h                      Something TBD                    Speech After speech      Yet another thing happening
                                                                                                            • Departments in Zoho

                                                                                                              I'm trying to set up a department. It looks like Departments have been removed from Zoho One. Is there another option? We have our main account setup, but want to set up a separate small department that can't see our tabs.
                                                                                                            • Add Timer for Agent Status Duration in Zoho Desk Dashboard

                                                                                                              Hello Zoho Desk Team, We hope you're doing well. We would like to submit a feature request to further enhance the agent status tracking functionality within the Zoho Desk Dashboard. 🎯 Current Functionality As it stands, Zoho Desk allows us to view the
                                                                                                            • [Beta Feature] Parent-Child Ticketing

                                                                                                              Hello there, a beta parent-child ticketing feature has recently been made available for some, read more here: https://help.zoho.com/portal/en/kb/desk/ticket-management/articles/understanding-parent-child-ticketing-system#Business_scenarios I would like
                                                                                                            • Enable Sorting by Ticket Count in Category Reports

                                                                                                              Hi Zoho Desk Product Team, I hope you're doing well. We would like to submit a feature request to improve the reporting capabilities in Zoho Desk. 🎯 Feature Request: Sorting by Ticket Count in Category Reports Currently, category-based reports in Zoho
                                                                                                            • Reactivating a CRM user...

                                                                                                              I'm a 1-man business primarily using CRM under my Zoho1 subscription (I have NO other employees or users). I wish to re-activate a prior user (my son, once more working with me) but when changing his status from inactive to active I receive this message:
                                                                                                            • Zohoサポートにスコープ開放を依頼する

                                                                                                              お世話になっております。 現在、弊社にてZoho DeskのナレッジベースをAPI経由で取得し、AIツール(NotebookLM等)に連携する仕組みの構築を検討しています。 つきましては、ZohoDesk.articles.READ スコープを使用したOAuth認証の許可をいただけますでしょうか。 API Console から Server-based アプリを作成済みですが、認可URLにアクセスすると「スコープが登録されていません」と表示されます。 お手数をおかけしますが、スコープの開放をご
                                                                                                            • Where can I configure the notifications for everything KB-related?

                                                                                                              Hi all, I'm receiving notifications for some actions happening in our Knowledge Base (e.g. someone leaving a feedback) and I would like to customise the template or have the choice to enable/disable such notifications like it is possible for ticket notification
                                                                                                            • Increase Round Robin Scheduler Frequency in Zoho Desk

                                                                                                              Dear Zoho Desk Team, We hope this message finds you well. We would like to request an enhancement to the Round Robin Scheduler in Zoho Desk to better address ticket assignment efficiency. Current Behavior At present, the Round Robin Scheduler operates
                                                                                                            • Next Page