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

        • Why can't we choose Fixed Asset account for Purchased Items? (eTims issue?)

          Hello, When the company purchase items not for sale and not supposed to be in the inventory stock, like equipment for operational use, there is no way to access the Fixed Asset accounts in the drop down list. Is that an eTims limitation again? Or something
        • "Track Inventory for this item" is forced checked by default for goods items (eTims issue?)

          Hello, Since connecting our Zoho books to eTims (Kenya) the "Track Inventory for this item" is forced checked by default (eTims issue?) in the Item creation page for any type of goods. So when purchasing anything that the company does not intend to sale,
        • Zoho CRM Functions: Redesigned Interface, Rich Analytics, and Multi-Language Support

          Hello everyone! We have given Functions in Zoho CRM a major overhaul with a new interface that makes it easier to build, organize, monitor, and troubleshoot your functions throughout their lifecycle. As part of this revamp, we have also introduced a unified
        • Can you import projects into Zoho Projects yet?

          I see some very old posts asking about importing project records into Zoho Projects. But I can't find anything up to date about the topic. Has this functionality been added? Importing tasks is helpful. But we do have a project where importing projects
        • reset password

          Hi I need to reset my password and need help
        • Is it possible to set a value to a field based on certain conditions

          Greetings Say i have a field that i want to set its value based on the value of another field.. for example if "number" field has value greater than 10, i want to set my field's value to X. Or if radio group had option 1 selected, then i want to set my
        • Native SMS and MMS Channel Support

          89% of US consumers say they prefer to communicate with businesses via SMS / MMS (aka "texting"). (link) Unfortunately, Zoho Desk does not currently support the most popular channel for consumer communications in the United States. For those of us in
        • Zoho CRM Layout Rules: Nine New Actions, Profile-Based Execution, and Interactive Preview

          Hello everyone, Availability: This feature is now available for customers in the JP and SA DCs. It is planned to be released for other customers in soon. We’re excited to announce powerful new enhancements to Layout Rules in Zoho CRM - a feature built
        • Global Sets for Multi-Select pick lists

          When is this feature coming to Zoho CRM? It would be very useful now we have got used to having it for the normal pick lists.
        • How to add line breaks in formula with Concat?

          I am trying to combine different fields with a formula field, but want to add line breaks.  I.e. the current code looks like:  Concat(${Contacts.Company_Name}, ' ' ,${Contacts.First_Name}, ' ' ,${Contacts.Last_Name}) And the result should be:  John Doe
        • Introducing spam detection for webforms: An additional layer of protection to keep your Zoho CRM clean and secure

          Greetings all, One of the most highly anticipated feature launches—Spam Detection in webforms—has finally arrived! Webforms are a vital tool for record generation, but they're also vulnerable to submissions from unauthenticated or malicious sources, which
        • Is Zoho Assist Secure Connect even practical for 1 person shop?

          I was gun ho with Zoho Assist to replace my existing Remote Access product I have been using but I need to implement MFA on each unattended connection. Right now each of these connections in my other product has a rotating token that I have enter off
        • Join the Zoho Desk Virtual Classroom Training (VCRT)

          Hello everyone, Have you heard about Zoho's Virtual Classroom Training (VCRT)? Zoho Desk's Virtual Classroom Training offers end-to-end training for Zoho Desk users. Join the VCRT and get hands-on guidance for setting up Zoho Desk and getting your business
        • Zoho CRM's revamped timeline view now extends to 3 years and support notes, filters, and email statuses

          Editions: All DCs: All Release plan: These enhancements are being rolled out to customers in a phased manner. They will be available to most organizations by the end of May. For organizations with huge volumes of data, they will be available by the end
        • Zoho Mail App Unable to connect to server

          Hi all, For the last two weeks, my Zoho Mail App on my iPhone which has worked fine up to this point has been unable to connect to the mail server. I can't access my emails even though I will get notification banners on the screen saying that they have been received. I can open Safari on my phone and then log in that way. This issue happens when I'm connected to wifi and on my phone data.  I've tried deleting the app several times and reinstalling, and have updated to the latest version. But it still
        • Specific ListView Canvas on Canvas Home Page Always Loads Most Recent ListView, Not the One Specified

          I had mentioned this to ZOHO, but I mainly wanted to see if others in the Community are also facing this problem. I created a Canvas ListView for a Custom Module, and then created a Canvas Home page (technically on a tab item, but I'm not sure if that
        • Add the Zoom Option to the Camera

          Hi, I use the ZOHO Forms Camera so I can manage metadata, compression, etc. but this doesnt have the zoom parameter activated, so when we have photos in a tight space and want to use 0.5 for example, we can't, can this be enabled please. Thanks Dan
        • Manage booking pages from your Android phone

          Hello everyone! We are happy to announce that users can now add and manage booking pages from their Bigin Android app. It is a multi-step form that users can create for purposes like booking appointments, scheduling calls or meetings, conducting webinars,
        • New UI - Color Preference Not Saving Permanently

          Small, not very urgent problem I'd like to share regarding the new UI theme color. I've changed my theme preference to the default blue color around 20 times by now. It always reverts to a green color theme. I've followed the instructions of changing
        • Automating Employee Birthday Notifications in Zoho Cliq

          Have you ever missed a birthday and felt like the office Grinch? Fear not, the Cliq Developer Platform has got your back! With Zoho Cliq's Schedulers, you can be the office party-cipant who never forgets a single cake, balloon, or awkward rendition of
        • Unbundle feature for composite items

          We receive composite items from our vendors and sell them either individually or create other composite items out of them. So, there is a lot of bundling and unbundling involved with our composite items. Previously, this feature was supported in form
        • Inventory Barcode Creation - Add Picture of Item

          Hi I am trying to set up bar code labels and include a picture of the item on the label - any idea on how to add that field to the barcode generator?
        • Gemini Action - Add "inineData" Support

          Thank you guys for adding a Gemini action. I like Gemini models for the "grunt work" of AI, as they have the cheapest tokens of the trustworthy providers One thing that's missing in the action, though, is the ability to pass file data. If you pass a base64-encoded
        • Protect backed up and exported data using password encryption

          Hello everyone, Protecting live data is crucial for any organization or product, as it contains sensitive customer information. However, protecting data does not end within the platform. Backup and export files often contain sensitive information and
        • Smarter holiday planning with yearly-specific Holiday Lists

          Hello everyone! Managing holidays and business hours is now easier and more efficient. Holiday Lists now support holidays that fall on different dates every year, while business hours now supports more than one holiday list. This helps businesses manage
        • Zoho Projects - Cloning a task does not trigger task workflow when created

          Hello! I have a Project where my team uses a set of tasks from a tasklist as templates, so we could simply clone it and drag it to another list in kanban view to avoid creating a new one from scratch. The process works well, but after cloning it the new
        • 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
        • 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
        • not able to access Zoho from home WIFI

          for some reasone i am not able to access Zoho on my laptop or my iphone while i am connected to my home Wifi, i am able to access these sites both on laptop as well as Iphone and associated apps on any other Wifi as well as when I am on my 4G connection
        • Five Guided Conversations Updates in Zoho Desk

          Hello everyone, Guided Conversations is getting updates that make it easier to create more inclusive customer experiences, retain important conversation context, customize your widget, keep track of changes, and connect with external services. Here are
        • zoho desk

          Hello, Did Zoho Desk have any issues today? Are tickets coming in late? I have an email account linked, and messages seem to be arriving with a delay—some email threads aren't coming through completely, and so on.
        • 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
        • Simplify eSignatures: Automate document workflows with Zoho WorkDrive

          Hello everyone, We’re excited to invite you to our upcoming live webinar, where Zoho WorkDrive and Zoho Sign will come together to show you how to simplify and automate document workflows. From creating and collaborating on documents to approvals, e-signatures,
        • Function #7: Fetch a value from Deal in Zoho CRM to the related Estimate in Zoho Books

          We're here with another function for those using the integration with Zoho CRM. You know that potentials can be linked to transactions in Zoho Books. But if you're including additional details about a Deal (potential) in Zoho CRM and you want to inherit
        • Turn off workflow Applied pop-up

          hi We are new to Desk. I have a rule to set to "waiting for customer" when agent sends reply. This comes up every time. How to i turn off? Or am i seeing as admin.
        • Workflows being applied and the Large unwanted popup

          When a workflow is being applied do to an action, then the Agent is left with a large Window asking if they would like the see the changes this workflow did. Is there any way to disable this prompt from appearing?
        • Maintenance notice for Zoho CommunitySpaces US data centers on August 23, 2026

          Dear customers, We have scheduled a maintenance activity for Zoho CommunitySpaces in our United States (US) data centers on August 23, 2026, from 1:30 a.m. to 2:00 a.m. During this 30-minute maintenance window, Zoho CommunitySpaces will be temporarily
        • Knowledge base: The nitty-gritty of SEO tags

          A well-optimized knowledge base with great SEO can benefit your company by allowing customers to find help articles and support resources using search engines. This enables customers to quickly and efficiently find the information they need without direct
        • zoho desk: Can tickets be created from Microsoft Teams messages?

          I am trying to see if there is a way to integrate Microsoft teams with zohodesk. we have a few customers who prefer to communicate requests through Teams, and it would be great to create tickets when they do.
        • ´´Send Email Reply´´ action does not work when the message body contains placeholders.

          Hi Community, I am working on a workflow where the Customer contact is notified via email when their ticket status goes On Hold. To do that, I chose the Send Email Reply action, and the minute I add a placeholder, the workflow does not work and the ticket´s
        • Next Page