From Campaign Leads to Sales Orders with Zoho CRM Mass Action APIs

From Campaign Leads to Sales Orders with Zoho CRM Mass Action APIs



Hello all!!
In growing businesses, sales teams often deal with a large volume of records every day - leads from campaigns, qualified prospects ready for conversion, and approved quotes that must be converted into sales orders. Performing these actions one by one can be time-consuming. Zoho CRM's Mass Action APIs let you perform the same operation on multiple records asynchronously.

In this Kaizen post, let us look at a real-world sales scenario where Zylker uses the following APIs:
  1. Mass Change Owner API
  2. Mass Convert Lead API
  3. Mass Convert Inventory Records API
  4. Corresponding Status APIs to track the background jobs
We will use these APIs to automate a campaign-to-sales-order flow.

Use Case

Zylker runs a product campaign and receives a large number of leads. These leads are initially assigned to the campaign manager for review. After the review is complete, the campaign manager uses the Mass Change Owner API to transfer ownership of all campaign leads in the custom view to the sales representative responsible for handling the campaign. Since this is an asynchronous operation, the Zylker stores the returned job ID and uses the Mass Change Owner Status API to monitor the progress until the ownership change is complete.

The sales representatives follow up with the leads. Leads that meet Zylker's qualification criteria are collected and converted in batches using the Mass Convert Lead API. Depending on the conversion options, the API creates the required Account, Contact, and optionally a Deal. Zylker tracks the conversion progress using the Mass Convert Lead Status API.

As the sales process continues, Quotes are created for interested customers. At the end of the day, approved Quotes are converted into Sales Orders using the Mass Convert Inventory Records API. Zylker stores the returned job ID and uses the Mass Inventory Conversion Status API to monitor the conversion until all eligible Quotes are processed successfully.

Note:
  1. The Mass Change Owner API can bulk assign ownership for records in a custom view or territory and supports up to 50,000 records in a custom view and it schedules a background job and returns a job ID for status tracking. 
  2. The Mass Convert Lead API converts up to 50 leads in one call.
  3. The Mass Convert Inventory Records API converts up to 50 inventory records per call, such as Quotes to Sales Orders or Invoices.

Step 1: Assign campaign leads to regional sales representatives

Zylker’s campaign manager first reviews leads in a custom view, for example:

Custom view: North Region Campaign Leads
Module: Leads
Owner: Campaign Manager
Criteria: Region = North

Once the manager finalizes the set of records, he uses the Mass Change Owner API to assign all records in that custom view to the relevant regional sales representative.

Sample Request:

Request URL: {api-domain}/crm/v8/Leads/actions/mass_change_owner
(For this use case, the module is Leads)

Request Method: POST
Input JSON:

{
  "cvid": "5725767000000087501",
  "owner": {
    "id": "5725767000000583032"
  },
  "criteria": {
    "field": {
      "api_name": "Region"
    },
    "comparator": "equal",
    "value": "North"
  }
}



Keys Explanation:
  1. cvid: The ID of the custom view whose records must be reassigned.
  2. owner.id: The user ID of the regional sales representative.
  3. criteria: Optional additional filter to narrow down records inside the custom view.
  4. field.api_name: API name of the field used in the condition.
  5. field.comparator: Comparison operator, such as equal.
  6. field.value: Value to match in the selected field.

Sample Response:


{
    "data": [
        {
            "code": "SCHEDULED",
            "details": {
                "job_id": "5725767000011072001"
            },
            "message": "change owner is successfully scheduled",
            "status": "success"
        }
    ]
}


The success response only indicates that the owner change has been scheduled. Since this is an asynchronous API, use the returned job ID with the Mass Change Owner Status API to track the operation until it completes.

Step 2: Check the owner change status

After scheduling the owner change, Zylker stores the returned job ID and uses the Mass Change Owner Status API to periodically check the status of the job until the operation is completed.

Sample Request:

Request URL: {api-domain}/crm/v8/Leads/actions/mass_change_owner?job_id=5725767000011072001
Request Method: GET

Sample Response:

{
    "data": [
        {
            "Status": "COMPLETED",
            "Failed_Count": 0,
            "Updated_Count": 349,
            "Not_Updated_Count": 0,
            "Total_Count": 349
        }
    ]
}

This ensures that the campaign manager knows whether all region-specific leads were reassigned successfully before sales follow-up begins.

Mass Change Owner Status API - failed case
Possible job statuses include COMPLETED, SCHEDULED, RUNNING, and FAILED. The response includes counts such as Total_Count, Updated_Count, Not_Updated_Count, and Failed_Count.

Step 3: Convert qualified leads in batches using the Mass Convert Lead API

After the sales representative follows up, leads that meet the required engagement and score criteria are moved into a qualified-leads view.
For example:

Custom view:
Qualified Campaign Leads
Criteria:
  1. Lead Status = Qualified
  2. Score >= 80
  3. Email Opt Out = false
  4. Follow-up Completed = true

Zylker fetches the lead IDs from this view and converts them in batches of up to 50 records using the Mass Convert Lead API.

Use the COQL API to retrieve the record IDs that match the above criteria.

Sample Request:

Request URL: {api-domain}/crm/v8/coql
Request Method: POST

Query:
{
  "select_query": "select id, Last_Name, Lead_Status, Score, Email_Opt_Out from Leads#5725767000000087501 where (Lead_Status = 'Qualified' and Score >= 80) and (Email_Opt_Out = false and Follow_up_Completed = true) limit 0, 200"
}

//Leads#5725767000000087501 | {module_API_name#CVID} - Custom View ID in the Leads module.
The Mass Convert Lead API accepts a maximum of 50 lead record IDs in the ids JSON array. If Deal creation is required, the Deals JSON object must include mandatory Deal fields such as Deal_Name, Amount, Stage, Closing_Date, and Pipeline when pipeline is enabled. 

Sample Request:

Request URL:{api-domain}/crm/v8/Leads/actions/mass_convert
Request Method: POST

Convert leads without creating Deals:

{
  "ids": [
    "5725767000010892005",
    "5725767000008883007",
    "554023000001111003"
     ...//you can give 50 lead IDs per API call.
  ],
  "assign_to": {
    "id": "554023000000987654"
  },
  "carry_over_tags": [
    {
      "api_name": "Contacts",
      "id": "5540230000000002179"
    }
  ],
  "move_attachments_to": {
    "api_name": "Contacts",
    "id": "5540230000000002179"
  }
}



Convert leads and create Deals:

{
  "ids": [
    "554023000001111001",
    "554023000001111002",
    "554023000001111003"
     ...
 ],
  "Deals": {
    "Deal_Name": "Product Campaign Deal",
    "Stage": "Qualification",
    "Closing_Date": "2026-08-31",
    "Pipeline": "Standard",
    "Amount": 25000
  },
  "assign_to": {
    "id": "554023000000987654"
  },
  "carry_over_tags": [
    {
      "api_name": "Contacts",
      "id": "5540230000000002179"
    },
    {
      "api_name": "Accounts",
      "id": "5540230000000002177"
    },
    {
      "api_name": "Deals",
      "id": "5540230000000002181"
    }
  ],
  "move_attachments_to": {
    "api_name": "Contacts",
    "id": "5540230000000002179"
  }
}


Keys Explanation:
  1. id: Contains the Lead record IDs that must be converted. Get these IDs by fetching records from the Qualified Campaign Leads custom view using the COQL API with CVID. Use the id value from each record in the response. Pass a maximum of 50 Lead IDs in one Mass Convert Lead API request.
  1. Deals: Contains the details of the Deal to be created during lead conversion. Include this object only if you want to create a Deal along with the Account and Contact. If you omit this object, the lead is converted without creating a Deal. Use the Fields Metadata API to get the Deal field API names, and the Get Records API to retrieve the corresponding field values.
  1. assign_to.id: Specify the CRM user ID who will own the converted Account, Contact, and Deal. Get this value using the Users API. In this use case, specify the ID of the regional sales representative who should own the converted records.
  1. carry_over_tags: Specify whether the Lead tags should be copied to the converted records. Include this object only if you want to carry over the Lead tags during conversion.
  1. carry_over_tags.api_name: Specify the API name of the target module where the Lead tags should be copied. Possible values are Contacts, Accounts, and Deals.
  1. carry_over_tags.id: Specify the ID of the target module where the Lead tags should be copied. Get this value using the Modules Metadata API.
  1. move_attachments_to: Specify the module to which the Lead attachments should be moved after conversion. Include this object only if you want to transfer the Lead attachments to one of the converted records.
  1. move_attachments_to.api_name: Specify the API name of the target module where the Lead attachments should be moved. Possible values are Contacts, Accounts, and Deals.
  1. move_attachments_to.id: Specify the ID of the target module where the Lead attachments should be moved. Get this value using the Modules Metadata API.
Sample Response:

{
    "code": "SCHEDULED",
    "details": {
        "job_id": "5725767000011068004"
    },
    "message": "Mass Convert scheduled successfully",
    "status": "success"
}

Zylker stores this job_id and tracks the conversion status.

Step 4: Check the mass lead conversion status using the Mass Convert Lead Status API

The Mass Convert Lead Status API returns the status of a scheduled mass lead conversion job. Its response includes the job status and counts such as total, converted, not converted, and failed records.

Sample Request:

Request URL: {api-domain}/crm/v8/Leads/actions/mass_convert?job_id=5725767000011068004
Request Method: GET

Response:

{
    "data": [
        {
            "Status": "COMPLETED",
            "Failed_Count": 0,
            "Not_Converted_Count": 0,
            "Total_Count": 3,
            "Converted_Count": 3
        }
    ]
}


Mass Convert Lead Status API - failed case
The Mass Convert Lead Status API returns status values such as completed, scheduled, in progress, and failed, along with Total_Count, Converted_Count, Not_Converted_Count, and Failed_Count.

Step 5: Convert approved Quotes into Sales Orders using the Mass Inventory Convert Records API

Once a lead becomes a customer opportunity, sales representatives create Quotes for the customer’s requirements. At the end of each day, Zylker identifies Quotes that meet the following conditions:


Module: Quotes
Criteria:
  1. Quote Stage = Confirmed
  2. Converted to Sales Order = false


Zylker fetches these Quote IDs and converts them into Sales Orders using the Mass Convert Inventory Records API.

Use the COQL API to retrieve the record IDs that match the above criteria.

Sample Request:

Request URL: {api-domain}/crm/v8/coql
Request Method: POST

Query:

{
  "select_query": "select id, Subject, Quote_Stage from Quotes where Quote_Stage = 'Confirmed' limit 0, 200"
}

The Mass Convert Inventory Records API supports conversions from Quotes to Sales Orders or Invoices, and from Sales Orders to Invoices. It is asynchronous, returns a job ID, and supports up to 50 records in a single API call from one parent inventory module at a time. 

Sample Request:

Request URL: {api-domain}/crm/v8/Quotes/actions/mass_convert

Request Method: POST

Input JSON


{
  "ids": [
    "554023000003111001",
    "554023000003111002",
    "554023000003111003",
     ...//You can convert up to 50 Quotes/Sales Orders IDs in a single API call.
  ],
  "convert_to": [
    {
      "module": {
        "api_name": "Sales_Orders",
        "id": "5540230000000002215"
      }
    }
  ],
  "carry_over_tags": true,
  "assign_to": {
    "id": "554023000000987654"
  },
  "related_modules": [
    {
      "api_name": "Tasks",
      "id": "5540230000000002193"
    },
    {
      "api_name": "Calls",
      "id": "5540230000000002197"
    }
  ]
}



Keys Explanation:
  1. ids: Contains the Quote record IDs to be converted into Sales Orders. Pass a maximum of 50 Quote IDs in one Mass Convert Inventory Records API request.
  1. convert_to: Specify the target module for inventory conversion. 
  1. convert_to.module.api_name: Specify the API name of the target module. In this use case, use Sales_Orders to convert Quotes into Sales Orders. 
  1. convert_to.module.id: Specify the ID of the target module. Get this value using the Modules Metadata API for the Sales_Orders module. 
  1. carry_over_tags: Specify whether the tags associated with the Quote should be copied to the converted Sales Order. It is a Boolean key. Set this to true if you want to retain the Quote tags in the Sales Order. 
  1. assign_to.id: Specify the CRM user ID who will own the converted Sales Orders. Get this value using the Users API. In this use case, this can be the sales representative who owns the Quote.
  1. related_modules: Specifies the related modules whose records should be associated with the converted Sales Order. Use this when Zylker wants related records, such as Tasks, Calls, or Meetings linked to the Quote, to be carried over or associated with the converted Sales Order. Use the Modules Metadata API to get the IDs of the modules.
Sample Response:

{
    "code": "SCHEDULED",
    "details": {
        "job_id": "5725767000011082001"
    },
    "message": "Mass Convert scheduled successfully",
    "status": "success"
}



Step 6: Check the inventory conversion status using the Get Mass Inventory Conversion Status

After scheduling the Quote-to-Sales Order conversion, the Zylker checks the mass inventory conversion job status with the job ID received previously in the response of  Mass Convert Inventory Records API.

Sample Request:

Request URL: {api-domain}/crm/v8/Quotes/actions/mass_convert?job_id=5725767000011082001
Request Method: GET

Response:

{
    "data": [
        {
            "total_count": 3,
            "not_converted_count": 0,
            "failed_count": 3,
            "converted_count": 0,
            "status": "COMPLETED"
        }
    ]
}


The Mass Convert Inventory Records Status API is used to monitor bulk inventory conversion jobs, such as Quote conversion jobs.

The Mass Inventory Conversion Status API returns the status of the inventory conversion job, such as SCHEDULED, IN PROGRESS, COMPLETED, or FAILED, along with count details such as total_count, converted_count, not_converted_count, and failed_count. 

Conclusion:

Mass Actions APIs help Zylker handle large CRM operations asynchronously and reliably. Leads are reassigned to the right sales representatives, qualified leads are converted in batches, and approved Quotes are converted into Sales Orders.
By storing each job_id, tracking the status APIs, and reviewing failed records separately, Zylker keeps the entire flow scalable, traceable, and error-safe from campaign leads to completed Sales Orders.
We trust that this post meets your needs and is helpful. Let us know your thoughts in the comment section or reach out to us at support@zohocrm.com.
Stay tuned for more insights in our upcoming Kaizen posts!

Cheers!!!



    • Sticky Posts

    • 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.
    • Kaizen #226: Using ZRC in Client Script

      Hello everyone! Welcome to another week of Kaizen. In today's post, lets see what is ZRC (Zoho Request Client) and how we can use ZRC methods in Client Script to get inputs from a Salesperson and update the Lead status with a single button click. In this
    • Kaizen #222 - Client Script Support for Notes Related List

      Hello everyone! Welcome to another week of Kaizen. The final Kaizen post of the year 2025 is here! With the new Client Script support for the Notes Related List, you can validate, enrich, and manage notes across modules. In this post, we’ll explore how
    • Kaizen #217 - Actions APIs : Tasks

      Welcome to another week of Kaizen! In last week's post we discussed Email Notifications APIs which act as the link between your Workflow automations and you. We have discussed how Zylker Cloud Services uses Email Notifications API in their custom dashboard.
    • Kaizen #216 - Actions APIs : Email Notifications

      Welcome to another week of Kaizen! For the last three weeks, we have been discussing Zylker's workflows. We successfully updated a dormant workflow, built a new one from the ground up and more. But our work is not finished—these automated processes are
    • Recent Topics

    • Hide Custom Fields for Customers or Vendors

      For whatever reason, all custom fields added to the Customer module also get added to the Vendor module. This leads to a clunky experience for users, as many custom fields we add only apply to one or the other. There should be a "hide" option to hide
    • Onboarding process

      I urgently need onboarding support. My account still shows trial period.
    • Detailed General Ledger - Display Transaction Description in Reports

      Hi Zoho Team, I'm currently using Zoho Books and have a question regarding the Detailed General Ledger report. When we enter a description or narration in transactions (Bills, Journal Entries, Expenses, etc.), the report does not display this description.
    • Zoho Mail Does Not Integrate with Analytics

      Hello everyone, Just wanted to make a quick post about the problem with zoho mail. Currently it does not connect to Zoho Analytics, which I think is crazy considering both of these applications have existed for a long period of time. Even zoho voice a
    • Net ##th Terms (e.g. due on the following 15th)

      I have a client who pays me twice monthly per our contract. It would be helpful to have terms on my invoices where the invoice is due on the 15th or the 30th of the same or the following month.
    • View Answer Bot conversations?

      We are trialing Zia and are experimenting with Answer Bot on our knowledge base. So far so good! Management asks me if it is possible to view Answer Bot conversations, the purpose being to look over its shoulder and confirm that it is working as des
    • Project status update visibility within a project

      Currently the only place within Zoho projects to see status updates for a given project is actually not in the project it's self it's in the Collaboration section and then by searching for a given project and clicking on the status tab. It would be great
    • Using custom CRM fields

      I have created a series of fields in the Deals module that need to be linked to fields in a contract I have customized. I can only see how to map standard fields, not the custom ones. How do I do this?
    • Como limitar o Zia Agent?

      Geralmente quando estamos criando um agente de IA no ZIa Agent Studio, colocamos o que ele deve fazer, utilizando as instruções que colocamos no Knowledge Base. Mas como colocamos limites que não devem ser ultrapassados? Para isso utilizamos os Guardrails,
    • An important update for Zoho Cliq desktop users

      The latest version of the Zoho Cliq desktop app (v1.8.0) will no longer be supported on macOS 10.15 Catalina and earlier versions. This is because the framework we use (Electron) no longer supports some older macOS versions. If you’re using macOS 10.15
    • All new Address Field in Zoho CRM: maintain structured and accurate address inputs

      Availability Update: 29 September 2025: It's currently available for all new sign-ups and for existing Zoho CRM orgs which are in the Professional edition exclusively for IN DC users. 2 March 2026: Available to users in all DCs except US and EU DC. 24
    • Zoho Flow - Zoho Desk trigger "Ticket created or updated" overrides Department

      Just in case anyone else has this issue. We had a Zoho Flow with the Zoho Desk trigger "Ticket created or updated". In the trigger I had selected a Department (Sales). What happens is that the Department ID (Sales) is submitted as part of the request
    • Layout rules in Zoho FSM

      As titled, is there an item in the pipeline or an ETA for the implementation of layout rules in Zoho FSM? Similar to how they work in Zoho CRM https://help.zoho.com/portal/en/kb/crm/customize-crm-account/customizing-page-layouts/articles/create-conditional-layouts
    • 2026 Product Roadmap and Upcoming Features

      This is your guide to what is coming in Zoho Vertical Studio throughout 2026. We’ll update this post throughout the year as items move from development to release, and as and when new initiatives are added. Once a feature is released, it will be reflected
    • Introducing Canvas templates: Design once, apply everywhere

      Greetings all! We're happy to introduce Canvas templates, a Forms view enhancement that enables you to design form layouts just once and apply them seamlessly across multiple modules. Imagine you use five CRM modules (Contacts, Deals, Leads, and more),
    • Zoho Projects - Will there ever be a send email feature in Zoho Project?

      Hi team, Are there plans to or will there ever be a sendemail feature in Zoho Projects, brining it in line with other similar platforms like Asana, ClickUp and Monday? I know that you can add comments via email to a specific task, but I believe this only
    • Why cant i see the Campaigns module in my Zoho app

      I am on the ZOHO CRM Standard edition. I can clearly see and use the Campaign module when viewing the ZOHO CRM desktop. When I switch to my phone, the Campaign Module does not show. I have gone through all the settings I can think of, but I still can't
    • 📣 Ask the team behind Zoho SalesIQ: Summer '26 Q&A

      Hi everyone! Following our recent webinars, Summer '26 Release: What's New in Zoho SalesIQ—where we walked you through all the new features, what they do, and how they work—and Driving the AI Evolution: Building Smarter Customer Experiences with Zoho
    • Always display images from this sender – Is this feature available?

      In Zoho mail, I had my "Load external images" setting set to "Ask me", and that's fine. That's the setting I prefer. What's not fine though is I always need to tick "Display now" for each email I get, regardless if I've done that multiple times from several
    • Set Custom Icon for Custom Modules in new Zoho CRM UI

    • Displayed sample tracking for multi branch setup.

      We have multiple branches and one of the biggest challenges for us to be able to track if a particular item is in display or not. I am shooting in the dark but I am wondering if there is a solution for the following : Each product used for display is
    • How do I migrate from Office 365 to Zoho Mail?

      Check out Advik Email Migration Wizard, this software is specially developed to move mailboxes from Office 365 to Zoho Webmail. In addition you can migrate from Gmail, Yahoo, Rediffmail and 80+ webmail servers to ZOHO MAIL. Isn't it amazing? This is an all in one email migration solution. Steps to export emails from Office 365 to Zoho Webmail are as follows; Run Advik Email Migration Tool in your system. Select Office 365 as source and enter its login credentials. Select mailbox folders and choose
    • Connection Issues

      Morning. Seems like a few of my colleagues that are offsite are having issues with connection to cliq, even when their internet is working perfectly fine and only 1 person onsite has issues. Can you please explain? Thanks
    • Goals API - Zoho People

      Hi Team, I would like to get the API details for retrieving organisation-wise Goals from Zoho People. Currently, I am able to retrieve individual employee goals using the following API: https://people.zoho.com/api/v3/performance/goal/{emp_id} However,
    • Backorder process review - Automating Removal of Sales Order from "On Hold" When PO is Received

      Hello Zoho Inventory Team, Currently, sales orders in On Hold status are released only when the bill for the purchase order is created. In our workflow, it would be much more efficient if the sales order could automatically move out of On Hold as soon
    • 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
    • Which Is the best online store to buy office furniture in Australia ?

      The most important part of your office is the office furniture. Your office is not complete when you have not put the required furniture in place. You need a furniture in your office so that you and your employees have desks, tables, and chairs which
    • Add "Product Code" as available column and search criteria for Assemblies

      Hi Zoho Community. For product (item) assemblies, it would be helpful to be able to create a custom view search criteria that limits the view by product code or perhaps product category. Currently, Product Code is not an available option to display as
    • What's New - July 2026 | Zoho Backstage

      Hello everyone, We hope you’re having an expectation-exceeding event experience! We’ve been hard at work bringing you a bunch of enhancements designed to make event management even easier. Let’s take a look at what’s new in Zoho Backstage. Export delivery
    • Delete Field that is used in a Zoho Flow connection

      I'm trying to delete a Field used in a Webhook created by Zoho Flow with CRM Connection and i get the following alert: When going to the alert i get to the following issue, can't edit it since its been deployed by a pluggin But yes i have here the prompted
    • Zoho Books | Product updates | August 2026

      Hello users, July has been an exciting month for Zoho Books! This month, we're excited to introduce HTML PDF Templates, Placeholders as Pills, expanded approval workflows for Sales Returns and Journals, and significant compliance updates across the India,
    • Q3 USA ZUG Meetups - Build AI Agents with Zoho

      Hi everyone! What if you could build your own AI agent from scratch in just one session? That's exactly what we're going to do at the upcoming ZUG Meetups across the United States, where you'll get hands-on experience with Zia Agents and explore how AI
    • Data Export is forcing Creation/Modified date just like reports

      The data export now forces you to select a created or modified date. There is not an All-Time option. This severely cripples the whole function of data export for audit purposes. If the data export (or reports for that matter), requires a date, there
    • Default ticket template in helpcenter

      Hello, I have a web form and a ticket template created. How can I make that my default ticket template? If an user clicks New ticket or create a ticket, I want that template to be the default one. Thank you for the time and info.
    • Zia Agents looks promising, but I still cannot deploy my first agent or connect WhatsApp after weeks of support tickets

      Hi Everyone, I am posting here because I am stuck and need practical help from someone who has successfully deployed a Zia Agent with WhatsApp. Zia Agents looks like a very promising product. I have watched the platform expand quickly, and I have noticed
    • Valid characters for use in email addresses using Zoho's apps/APIs

      We have found an issue with the + sign character in zoho subs - we are allowed to create a customer with an email address that has a plus sign but the API doesn't allow the + so the billing portal is not created. We are going to prevent users from using
    • Feature Request – Per-Channel Pre-Chat Form Controls

      We'd like the ability to enable/disable the pre-chat form on a per-channel basis, rather than having a single global setting. On the website widget, asking for name and email before chat starts makes sense. On WhatsApp, however, email isn't necessary
    • Remove the mandatory Name Card buttons (or at least make them optional)

      Please remove the mandatory Name Card buttons (or at least make them optional) A recent change to the Name Card in Zoho SalesIQ (currently affecting WhatsApp) introduced mandatory buttons before a visitor can provide their name. I believe this change
    • Copy + Paste in Notes: Text color and text background are not retained

      I've recently started using Zoho Notebook as an Evernote replacement. When copying and pasting text within Zoho Notes, I notice that the formatting of the text (text color and background color) is not retained when pasting. Only the attributes "Bold"
    • Need to show discount before total after subtotal

      Need to show discount before total after subtotal on my estimate template (see attachment)
    • Next Page