Skip to main content

Workflows

Workflows let you automate repetitive tasks inside CronDB. Define a trigger, set conditions, and execute actions — all without writing code.

How Workflows Work

Every workflow has three parts:

  1. Trigger — The event that starts the workflow
  2. Conditions (optional) — Rules that must be true for the workflow to continue
  3. Actions — What happens when the trigger fires and conditions are met

Creating a Workflow

  1. Navigate to Integrations → Workflows
  2. Click + New Workflow
  3. Give it a name (e.g., "Route US SaaS to Hot List")
  4. Configure trigger, conditions, and actions
  5. Click Activate

Triggers

TriggerDescription
Alert matchAn intent alert rule matched a new domain
Watchlist changeA watched domain's data changed
Domain added to listA domain was added to a specific list
Sequence eventA contact opened, clicked, replied, or bounced
Score thresholdA domain's score crossed a threshold
New enrichmentA domain was enriched (via API or dashboard)
ScheduleRuns on a time schedule (daily, weekly)

Trigger Configuration Example

Trigger: Alert Match

  • Alert: "US Technology Startups"
  • This fires every time a new domain matches the "US Technology Startups" alert.

Conditions

Add conditions to filter which trigger events proceed to actions:

ConditionOperatorsExample
Industryis, is notIndustry is "Technology"
Countryis, is notCountry is "US"
Scoregreater than, less thanScore > 70
Tech stackuses, does not useUses "Shopify"
Has emailyes, noHas email = yes
Confidencegreater thanConfidence > 0.85

Condition Logic

Conditions combine with AND/OR logic:

IF trigger fires
AND (Industry is "Technology" OR Industry is "E-commerce")
AND Score > 50
AND Has email = yes
THEN execute actions

Actions

ActionDescription
Add to listAdd the domain to a specific lead list
Remove from listRemove the domain from a list
Update scoreAdd or subtract points from the domain's score
Set tagApply a custom tag to the domain
Send webhookPOST data to an external URL
Send emailSend a notification email to a team member
Enroll in sequenceAdd the domain to an outreach sequence
Create taskCreate a manual task for a team member
Update fieldSet a custom field value on the domain

Multiple Actions

A single workflow can execute multiple actions in sequence:

Example: Full Lead Routing Workflow

  1. Add to "Hot Leads" list
  2. Set tag: "high-priority"
  3. Update score: +20 points
  4. Enroll in "VIP Outreach" sequence
  5. Send webhook to Slack channel
  6. Create task: "Review this lead" assigned to Sales Manager

Workflow Examples

Auto-Route High-Score Leads

Trigger: Score threshold crossed (score > 80)
Condition: Has email = yes
Actions:
1. Add to "Hot Leads" list
2. Enroll in "Fast Follow-Up" sequence
3. Send Slack notification via webhook

Competitor Tech Adoption Alert

Trigger: Watchlist change
Condition: Tech stack added contains "CompetitorProduct"
Actions:
1. Add to "Competitor Users" list
2. Create task: "Research competitive angle"
3. Update score: +25 points

Weekly Lead Digest

Trigger: Schedule (every Monday at 9 AM)
Condition: None
Actions:
1. Send email with weekly lead summary to team

Testing Workflows

Before activating:

  1. Click Test to simulate the workflow with a sample domain
  2. Review which conditions would pass
  3. Preview which actions would execute
  4. Verify the output matches your expectations

Workflow Limits

PlanMax WorkflowsMax Actions per Workflow
Pro105
EnterpriseUnlimited10
Availability

Workflows are available on Pro and Enterprise plans. Starter and Free users can achieve similar automation using webhooks and external tools.

Next Steps