When a lead converts to a contact, account, and deal in Zoho CRM, that's just the beginning. What happens next? Should you send a welcome email? Create a project? Notify the sales team? Blueprint Custom Actions let you define exactly what happens after a lead is converted automatically. This guide walks you through setting up custom actions in Blueprint to trigger post‑conversion workflows. Technofog helps you design and implement these automations to ensure no opportunity falls through the cracks.
Why Use Custom Actions After Convert?
Seamless Handoff
Automatically create tasks, assign owners, or trigger notifications the moment a lead becomes a customer.
Consistent Onboarding
Ensure every new customer receives the same welcome experience every time, no manual steps missed.
Reduce Manual Work
Eliminate repetitive follow‑ups, data entry, and the risk of forgetting critical post-sale steps.
What is a Blueprint Custom Action?
In Zoho CRM, Blueprint allows you to define a process with stages and transitions. A Custom Action is a special transition that triggers a custom function (Deluge script) when a record moves from one stage to another. After lead conversion, you can use a custom action to run any automation you need from sending emails to updating external systems.
Key Components
- Blueprint State: The stage where the custom action resides (e.g., "Converted")
- Transition: The action that moves the record from one state to another (e.g., "Convert Lead")
- Custom Action: A Deluge script triggered when the transition is executed
Step‑by‑Step: Setting Up a Custom Action After Convert
Enable Blueprint on Leads Module
Go to Setup → Process Management → Blueprint. Create a new blueprint for Leads. Define at least two states: e.g., "New Lead" and "Converted".
Create a Transition to "Converted"
Add a transition from "New Lead" to "Converted". Name it "Convert Lead".
Add a Custom Action to the Transition
In the transition settings, click "Add Action" and select "Custom Action". Choose an existing custom function or create a new one.
Write the Deluge Custom Function
Create a new custom function that executes the desired actions after conversion. The function will have access to the lead record and any related data.
Test the Workflow
Convert a lead in your CRM. The custom function should run automatically after the conversion completes.
Deluge Code Example (Post‑Conversion Automation)
// Custom function triggered after lead conversion (Blueprint Custom Action)
// Sends welcome email, creates onboarding task, and updates deal fields.
leadId = input.ID;
lead = zoho.crm.getRecordById("Leads", leadId);
// Fetch converted IDs from lead record after conversion
convertedContactId = lead.get("Converted_Contact_ID");
convertedDealId = lead.get("Converted_Deal_ID");
if(convertedContactId != null && convertedDealId != null)
{
// 1. Send personalized welcome email to new contact
contact = zoho.crm.getRecordById("Contacts", convertedContactId);
toAddress = contact.get("Email");
if(toAddress != null)
{
subject = "Welcome aboard – next steps inside";
body = "Hello " + contact.get("First_Name") + ",\n\n" +
"Thank you for choosing us! Your deal has been successfully converted.\n" +
"Your account manager will reach out within 24 hours.\n\n" +
"Best regards,\nCustomer Success Team";
sendmail
[
to : toAddress
subject : subject
message : body
];
}
// 2. Create an onboarding task inside Zoho CRM (or custom module)
taskMap = Map();
taskMap.put("Subject", "New Customer Onboarding - Follow up");
taskMap.put("Description", "Welcome the customer, schedule kickoff call.");
taskMap.put("Due_Date", zoho.currentdate.addDays(2));
taskMap.put("Related_To", convertedDealId);
taskMap.put("Status", "Not Started");
createResp = zoho.crm.createRecord("Tasks", taskMap);
// 3. Update deal custom field to track automation status
updateDeal = zoho.crm.updateRecord("Deals", convertedDealId, {"Post_Convert_Status": "Automated"});
// 4. Optional: Send internal notification (Slack or email)
info "Post-conversion automation executed for Deal ID: " + convertedDealId;
}
else
{
// Log warning if conversion IDs missing
info "Conversion IDs not found for lead: " + leadId;
}
⚙️ This script is fully customizable. Technofog builds robust, error-proof functions tailored to your unique business logic.
Common Use Cases After Lead Conversion
Welcome Email Sequence
Send personalized welcome email with onboarding resources, login details, and next steps.
Create Project / Onboarding Tasks
Automatically create a project in Zoho Projects or a task list for the customer success team.
Notify Sales & Support Teams
Send a Slack message, create a support ticket, or trigger an internal notification.
Update External Systems
Call an API to sync with your ERP, accounting software, or custom database.
Assign Account Manager
Use territory rules to assign a dedicated account manager based on deal size or region.
Trigger Follow‑Up Campaign
Add the new contact to a marketing automation sequence in Zoho Campaigns.
Why Technofog for Blueprint Automation?
Deluge & Blueprint Experts
We've built dozens of complex Blueprint workflows with custom actions. Our consultants handle error handling, API integrations, and edge cases seamlessly.
Tailored to Your Process
No one‑size‑fits‑all scripts. We design custom functions that match your exact business rules and external systems.
Training & Handover
We document your automations and train your team so you can maintain and extend them confidently.
"Technofog set up a Blueprint custom action for us that triggers a complete onboarding workflow after lead conversion. It sends emails, creates tasks, and even updates our external systems. Our sales team no longer has to remember these steps it just happens. Invaluable."
David Lee, Sales Operations Manager
Frequently Asked Questions
Can I use Blueprint Custom Actions on leads that have already been converted?
Custom actions are triggered when a record moves through a Blueprint transition. For existing leads, you can manually run the transition or create a custom function to process past records in bulk.
Do I need developer skills to write the custom function?
Basic Deluge scripting is required. If you don't have in‑house developers, Technofog can build and maintain the functions for you with ongoing support.
What if the conversion fails or IDs are missing?
Good error handling is essential. We add checks and fallback notifications to ensure reliability and alert your team if anything goes wrong.
Can Blueprint be used on leads without a custom action?
Yes. Blueprint works for any process automation. Custom actions are optional but powerful for post-conversion logic.
Ready to Automate Your Post‑Conversion Workflows?
Get a free 30‑minute consultation with a Zoho Blueprint expert. We'll help you design custom actions that save time, ensure consistency, and scale with your business.
📅 Free Blueprint Automation Consultation
Let's map out your ideal post‑conversion process zero obligation.