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

    Nederlandse Hulpbronnen


      • Recent Topics

      • Frustrated with Zoho Assist QuickSUpport

        Trialling Zoho Assist and I have a variety of clients. A lot are computer illiterate. Some have poor vision. The current support sessions are using apps which have desktop icons for the appropriate apps. I either connect on demand then the client approves
      • CRM x WorkDrive: We're rolling out the WorkDrive-powered file storage experience for existing users

        Release plan: Gradual rollout to customers without file storage add-ons, in this order: 1. Standalone CRM 2. CRM Plus and Zoho One DCs: All | Editions: All Available now for: - Standalone CRM accounts in Free and Standard editions without file storage
      • Zoho CRM Copilot Connector

        Hello, Are there plans to release a connector for Zoho CRM and Copilot? I'm in the early research stages of potentially switching our CRM solution to Microsoft Dynamics because of its out of the box integration with Copilot. The advantage being that we
      • 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
      • Introducing Microsoft Word Integration in Zoho Contracts

        We are excited to announce a new feature that brings contract authoring and negotiation in your familiar environment — the Microsoft Word Integration. What This Integration Brings The Microsoft Word Integration connects Zoho Contracts with the Microsoft
      • Share Video Response Card ion Zobot

        I am using the zobot codeless bot builder in SalesIQ. I want to share a video but delay the next response card until after the video has finished playing or has been stopped. Is this possible?
      • Customer image field

        I created a custom image field for estimates, and it works as expected. The only issue I have is that I want to be able to place the custom image field in the estimate invoice. Is there a way I can do that, the field does not give the option to display
      • Sub Folders

        It would be great if there could be sub-folders in reports. We have a ton of individual reports and folders that would be easier to navigate this way 
      • 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,
      • Question and responses disapear

        I have a form where several people have had issues where the questions, responses or submission simply disappear when trying to complete the form. It seems to be random with no pattern of question, browser or OS. Hopefully there is a fix in the platform
      • Unable to send message;Reason:553 Relaying disallowed. Invalid Domain

        Hi, Now when I try to reply to an email, I see the Unable to send message;Reason:553 Relaying disallowed. Invalid Domain voicemessagedownloader.com error. I tested sending an email when I set it up in the past and it worked. I have checked the Zoho Organization
      • Guide customers to the right booking page with routing forms

        Greetings from the Zoho Bookings team! We're excited to introduce Routing Forms in Zoho Bookings. Routing forms let you collect information from customers before they schedule an appointment and automatically direct them to the most appropriate booking
      • Analytics Dashboard User Filters Default Value

        User Filters on Dashboard do not allow Unknown to be set as a default filter value. I have to include NULL values in my dashboard among other values but I can't include NULL/Unknown by default in Dashboard User Filters.
      • Horrible download speed

        Using a trial of Zoho Assist and downloading a 316 MB file on a 500/500 fibre connection to a remote computer on the same network took 7 mins to complete. On AnyDesk it took 1 min or so.
      • How to Backup Zoho to PST?

        I'm looking for a simple way to backup Zoho Mail emails to PST format. I tried the IMAP method with Outlook, but it seems slow and complicated for large mailboxes. I need a solution that can: Export Zoho emails to PST Preserve attachments and folder hierarchy
      • 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,
      • Action required: WhatsApp now uses BSUID as the primary identifier

        Important If your support team uses WhatsApp to engage with customers, there is an important platform change you need to know about. BSUID support is now mandatory for all WhatsApp Business Platform partners and businesses. WhatsApp is introducing usernames,
      • Tip #83- Give Customers a Faster Way to Reach You with the Quick Support Plugin – 'Insider Insights'

        Hello Zoho Assist Community! Think about the last time a customer needed urgent support. They emailed in, waited for a response, got a session link, couldn't find it in their inbox, called back, and by the time the session actually started, a good chunk
      • Final Notice: Migrate Your ASAP Mobile SDK by August 31

        Alert August 31, 2026 is the deadline. After this date, older ASAP Mobile SDK versions will no longer work with the ASAP Help Widget. If your app hasn't been migrated to a supported SDK version, users will no longer be able to access the ASAP Help Widget
      • Approval Process configuration is now more flexible and fully customizable

        Hello everyone! Zoho CRM's Approval Process is back with a better user experience that makes it easier to add rules to your processes. This enhancement includes some UI updates that help you create highly structured approval stages—and more. Let's look
      • Kaizen #255 - Building a Real-Time Operational Dashboard with Zoho CRM Queries

        Hello Everyone, Welcome back to another edition of the Kaizen series, where we uncover powerful ways to extend and customize Zoho CRM. In the previous Query Kaizens, we explored how Queries can retrieve CRM data, invoke REST APIs, and even update CRM
      • 【Zoho CRM】キオスクに「ループ機能」が追加|同じ処理を繰り返し実行可能に

        ユーザーの皆さま、こんにちは。 コミュニティグループの中野です。 Zoho CRMのキオスクに、同じ処理を繰り返し実行できる「ループ機能」が追加されました。 これまでは、同じ処理を複数回実行したい場合、同じ設定を繰り返し作成する必要がありました。 ループ機能を使うと、処理を一度設定するだけで、指定した回数や 取得したデータ数に応じて自動的に繰り返すことができます。 目次 ループ機能とは 設定方法 注意点 1. ループ機能とは ループ機能を使うと、キオスク内の画面や処理を指定した条件に応じて繰り返し実行できます。
      • Es posible cambiar el lenguaje de los modulos del ASAP?

        Es posible cambiar el lenguaje de estos textos? Tengo Zoho configurado en español pero aun así me muestra estos textos en ingles:
      • Where do I edit the "Welcome to [portal name]" message

        I am looking for a way to edit the "Welcome to" part of the message that is seen on the landing page (ex: https://help.zoho.com/portal/en/home). When I use the French interface, it doesn't make sense... I want to change it from "Bienvenue chez" to" Bienvenue au". Thanks!
      • Zoho ERP | Product updates | July 2026

        Hello users, We're back with another round of updates to help you streamline your operations. This month's release brings new features and enhancements designed to help you work more efficiently. Read on to discover everything that's new in Zoho ERP this
      • Automate Backups

        This is a feature request. Consider adding an auto backup feature. Where when you turn it on, it will auto backup on the 15-day schedule. For additional consideration, allow for the export of module data via API calls. Thank you for your consideration.
      • Shared Snippets Everyone

        Hi, Now that the Shared Snippets have been released and I think will be the most used feature implemented in 2023 :) Creating and Using Snippets in Ticket Responses - Online Help | Zoho Desk Maintain consistency in ticket responses with shared snippets
      • Multi-currency and Products

        One of the main reasons I have gone down the Zoho route is because I need multi-currency support. However, I find that products can only be priced in the home currency, We sell to the US and UK. However, we maintain different price lists for each. There
      • Remove "Subject" as a required field on quotations

        Not sure why, but Zoho has made 'Subject' a system defined required field. I'm not entirely sure why subject would be required as a key field (i.e. you cannot deactivate it or change it from required). It doesn't make much sense on many product quotations,
      • Displaying only unread tickets in ticket view

        Hello, I was wondering if someone might be able to help me with this one. We use filters to display our ticket list, typically using a saved filter which displays the tickets which are overdue or due today. What I'd really like is another filter that
      • Best way to setup Inventory bin tracking for products with multiple boxes/crates

        Hi - we need some advice from the community on setting up Items in the Inventory for products with multiple crates. We have large products in our warehouse where the product is delivered as two large (double pallet) crates. We've setup the Items for these
      • Can't find field from ZCRM for a trigger

        Hello, Currently I am revamping our CRM system and we have created second layouts from to try out new processes while not disrupting the old one. Moreover, we want to use different layouts for different processes. The issue is that when creating the ZCRM
      • Discount Per Item / Option Removed

        Hi, I was using Zoho Books for three years now and very saticfied. Now, as we try to add an invoice, we founds that the discount option per item was takn away, and a discount from total was implemented. However, we have cases when we add a diffrent discount to each item. Was this option removed permanently? Thanks, 
      • Any Possible to change the challan type in Delivery challan ?

        Hello Team, We need to add the more values in challan type in delivery challan module in Zoho Books.So how to add additional values in challan type field. Please find following snap for your reference. Thanks in Advance, Thisai Moorthy.
      • Show when an invoice has been viewed

        It would be nice to know if/when a customer has viewed an invoice. This would mean not having PDF attachments and just have the link to the invoice. My previous invoicing solution had this feature and I did not realize how much I used it until it was gone. Would this be possible, or this already available and I am just missing it?
      • Zoho Books | Product updates | March 2026

        Hello users, We’ve rolled out new features and enhancements in Zoho Books. From Advanced Reporting Tags to the ability to mark projects as completed, explore the latest updates designed to improve your bookkeeping experience. Introducing Advanced Reporting
      • Separator line

        Is there a way i can insert a line in an invoice or quote without showing qty or prices? e.g. Options I Item description qty and price Option II Item description qty and price Thanks
      • 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
      • BCC Drop Box Centralisation

        Hi Team, For the last few years, I have had a question related to the Zoho CRM BCC Dropbox feature. Although BCC Dropbox is very useful for tracking customer email communication, I have always wondered why its configuration is managed at the individual
      • Kiosk Page Refresh

        We have a Kiosk running from a button in contacts to update values and also add related lists, which works great, but when the kiosk is finished the page does not refresh to show the changes. Is there a way to force the contact to refresh/update when
      • Next Page