Getting Started with Buildorado
Learn how to create your first workflow automation in under 5 minutes.
You have an idea for a lead qualification funnel, a payment checkout flow, or a client onboarding process. In the past, you would have spent weeks coordinating with developers, writing custom code, and stitching APIs together. With Buildorado, you can build the entire thing visually -- no code required -- and have it live in under five minutes. This guide walks you through building a real lead qualification workflow from scratch, step by step, so you can see exactly how it works.
What You Will Build
By the end of this tutorial, you will have a fully functional lead qualification workflow that:
- Collects a prospect's name, email, company size, and budget through a multi-step form
- Uses conditional logic to score and route leads into "Hot," "Warm," or "Cold" categories
- Sends a personalized follow-up email to the prospect
- Notifies your sales team on Slack when a hot lead comes in
This is the kind of workflow that would normally require a CRM, a form tool, an email service, and custom glue code. In Buildorado, it is a single visual canvas.
Step 1: Create Your Account and Workspace
Head to buildorado.io and sign up with your email or Google account. No credit card is required -- the free tier includes 3 workflows and 100 submissions per month, which is more than enough to follow along.
Once you are in, you will land on the Dashboard. This is your command center -- you will see all of your workflows, recent submissions, and analytics here.
Step 2: Start a New Workflow
Click the New Workflow button in the top right corner of your dashboard. You have two options:
- Blank Canvas -- start from an empty workflow and build everything yourself
- Templates -- choose from pre-built workflows in the marketplace
For this tutorial, select Blank Canvas. The visual builder opens with an empty canvas and a sidebar of available nodes on the left. If you would rather start from a template and customize it, check out the Using Templates guide.
Step 3: Add Your Form Fields
The form is where your prospects will enter their information. Drag fields from the left sidebar onto the canvas to build your intake form. Buildorado supports 36 field types, but for our lead qualification workflow, we need just a few.
First form step -- Contact Information:
- Drag a Text field and label it "Full Name." Mark it as required.
- Add an Email field labeled "Work Email." The email type automatically validates the format, so you will never get garbage data.
- Add a Phone field labeled "Phone Number." This is optional -- not everyone wants to share their number upfront.
Second form step -- Business Details:
Since we are building a multi-step form, add a second form node and connect it to the first one with an edge. This creates a natural progression and keeps each step short and focused.
- Add a Select field labeled "Company Size" with options: "1-10," "11-50," "51-200," "200+."
- Add a Number field labeled "Annual Budget ($)" with a minimum value of 0.
- Add a Textarea field labeled "Tell us about your project" for open-ended context.
Each field can be configured with labels, placeholders, validation rules, and conditional visibility. For example, you might show a "What industry are you in?" dropdown only if the company size is 51 or more.
Step 4: Add Conditional Logic to Score Leads
This is where Buildorado really shines. Instead of sending every lead to the same place, we are going to route them based on their answers.
Add a Branch Node (if/else) after the second form step. Buildorado supports 35+ comparison operators, so you can build sophisticated routing logic without writing a single line of code.
Configure the branch conditions:
Hot Lead Path:
IF (budget > 10000 AND company_size is "51-200" OR "200+")
→ Route to Hot Lead actionsWarm Lead Path:
ELSE IF (budget > 1000 OR company_size is "11-50")
→ Route to Warm Lead actionsCold Lead Path:
ELSE
→ Route to Cold Lead actionsThe branch node creates separate edges for each path. You can see the conditions displayed directly on the canvas, making it easy to understand the flow at a glance. For more details on building branching logic, see the Branch Nodes documentation.
Step 5: Add Actions to Each Path
Now we connect each branch to specific actions. This is where the real automation happens.
Hot Lead Path
- Send Email -- Add an action node to send a personalized email to the prospect. Use template variables to inject their name and company details:
Subject: "Thanks for your interest, {{fullName}}!"
Body: "Hi {{fullName}}, we're excited to learn about your project
at a company of {{companySize}} employees..."- Post to Slack -- Add another action node to notify your sales team instantly. Connect your Slack workspace in Settings > Integrations (one-time OAuth setup), then configure the message:
New hot lead! {{fullName}} from a {{companySize}} company
with a ${{budget}} budget. Project: {{projectDescription}}- Create CRM Record -- Optionally, add a Salesforce or HubSpot action to create a lead record automatically.
Warm Lead Path
- Send Email -- A slightly different email that offers helpful resources instead of a sales pitch.
- Add to Google Sheets -- Log the lead in a spreadsheet for your marketing team to nurture.
Cold Lead Path
- Send Email -- A brief thank-you email with a link to self-serve resources.
Step 6: Preview and Test Your Workflow
Before going live, click the Preview button in the top toolbar. This opens your workflow exactly as a prospect would see it. Walk through every path:
- Fill in details that should trigger the "Hot Lead" path. Verify the email content and Slack notification look correct.
- Go back and fill in details for the "Warm" and "Cold" paths. Make sure each route behaves as expected.
- Test edge cases -- what happens if someone leaves the budget field empty? Does validation catch it?
Preview mode is your safety net. Use it liberally. Every minute spent testing saves hours of fixing issues after launch.
Step 7: Publish and Share
When everything looks right, click Publish. Your workflow immediately gets a shareable link:
https://buildorado.io/f/your-workflow-idYou can share this link directly, embed it on your website with an iframe, or even serve it from your own domain with a custom domain setup. Here is the embed code:
<iframe
src="https://buildorado.io/f/your-workflow-id"
width="100%"
height="700"
frameborder="0"
style="border: none; border-radius: 8px;"
></iframe>You can also pre-fill form fields via URL parameters, which is perfect for personalized outreach campaigns:
https://buildorado.io/f/[email protected]&name=JaneCommon Pitfalls and How to Avoid Them
Skipping the preview step. It is tempting to publish immediately, but untested conditional logic is the number one cause of broken workflows. Always test every path.
Making forms too long. Multi-step forms with 3-5 fields per step convert significantly better than single-page forms with 15 fields. Use Buildorado's multi-step capability to break things up.
Forgetting error handlers. External services can fail -- APIs go down, rate limits get hit. Add Error Handler nodes to your action paths so failures are caught gracefully instead of silently swallowed.
Hardcoding values instead of using variables. Always use {{variableName}} references to pull data from upstream nodes. Hardcoded values break when you change your form structure.
What You Have Accomplished
In just a few minutes, you built a complete lead qualification system that:
- Collects structured data through a clean, multi-step form
- Automatically scores and routes leads based on their answers
- Sends personalized emails to every prospect
- Alerts your sales team in real time when high-value leads come in
- Optionally logs everything to your CRM and spreadsheets
No backend servers. No API integrations to maintain. No code to debug at 2 AM.
What's Next
You have the fundamentals down. Here is where to go from here:
- Quick Start Guide -- A concise overview of all Buildorado features
- Form Builder -- Explore all 36 field types, themes, and validation options
- Workflows -- Deep dive into nodes, edges, variables, and execution flow
- Conditional Logic -- Master the 35+ operators and AND/OR condition groups
- Integrations -- Connect Stripe, Slack, Google Sheets, Salesforce, and 30+ other services
- AI Nodes -- Add AI-powered text generation, lead scoring, and intelligent routing to your workflows
- Logic Nodes -- Unlock loops, merges, HTTP requests, code execution, and advanced automation
You might also find these guides helpful:
- Workflow Automation Best Practices -- 10 tips for building efficient, scalable workflows
- How to Create a Multi-Step Form With Conditional Logic -- Build smart forms that adapt to user answers
- Introducing AI Nodes -- Add AI-powered text generation, lead scoring, and routing to your workflows
- How Much Does a Form Builder Cost? -- Compare pricing across all major form builders
- Connect Your Form to Google Sheets -- Send submissions to a spreadsheet automatically
Have questions? Reach out to us at [email protected] or join the community Discord. We would love to see what you build.