5 min readUpdated Mar 2, 2026

Workflow Examples

These examples demonstrate common workflow patterns using actual Vantage nodes. Each example shows a complete node chain you can recreate in the Workflow Editor.


Example 1: Sales Revenue Dashboard

Build a dashboard tile that shows daily sales revenue by region, updated on a schedule.

Node Chain

Schedule Trigger → Database Query → Aggregation → Sort → Dashboard Output

Configuration

NodeSettings
Schedule TriggerRun daily at 8:00 AM
Database QueryConnect to PostgreSQL. Query: SELECT region, amount, order_date FROM orders WHERE order_date >= CURRENT_DATE - INTERVAL '1 day'
AggregationGroup by region, aggregate amount with SUM
SortSort by amount descending
Dashboard OutputOutput to a Bar Tile named "Daily Revenue by Region"

Result

A bar chart tile on your dashboard that automatically refreshes daily with the latest revenue data, broken down by region.


Example 2: Low Inventory Alert

Monitor inventory levels and send a Slack notification when stock drops below threshold.

Node Chain

Schedule Trigger → Shopify Get Inventory Levels → Filter → Send Message (Slack)

Configuration

NodeSettings
Schedule TriggerRun every 4 hours
Shopify Get Inventory LevelsConnect to your Shopify store
FilterFilter where available_quantity < 10
Send MessageSlack channel: #inventory-alerts. Message: Low stock alert with product names and quantities.

Result

Automated inventory monitoring that alerts your team in Slack when any product falls below 10 units.


Example 3: New Customer Stat Card

Display a real-time count of new customers added this month.

Node Chain

Schedule Trigger → Database Query → Aggregation → Display Number As Stat → Dashboard Output

Configuration

NodeSettings
Schedule TriggerRun every hour
Database QueryQuery: SELECT COUNT(*) as new_customers FROM customers WHERE created_at >= DATE_TRUNC('month', CURRENT_DATE)
Dashboard OutputOutput to a Stat Tile named "New Customers This Month"

Result

A stat card on your dashboard showing the number of new customers this month, refreshed hourly.


Example 4: Social Media Sentiment Analysis

Pull recent posts from social media, analyze sentiment using AI, and display trends.

Node Chain

Schedule Trigger → Get Posts (Instagram) → AI Enrichment → Aggregation → Dashboard Output

Configuration

NodeSettings
Schedule TriggerRun daily at 9:00 AM
Get PostsConnect to Instagram. Fetch posts from the last 24 hours.
AI EnrichmentAdd column: sentiment with prompt "Classify the sentiment of this post as Positive, Negative, or Neutral"
AggregationGroup by sentiment, count posts
Dashboard OutputOutput to a Pie Tile named "Post Sentiment Distribution"

Result

A pie chart showing the distribution of positive, negative, and neutral posts, updated daily.


Example 5: Compliance Audit Pipeline

Automatically audit data records against compliance policies and flag violations.

Node Chain

Schedule Trigger → Database Query → AI Compliance Check → Multi-Conditional → Dashboard Output (Pass) + Send Email (Fail)

Configuration

NodeSettings
Schedule TriggerRun weekly on Monday at 7:00 AM
Database QueryPull records that need auditing
AI Compliance CheckPolicy: "Check that all customer records have a valid email, phone number, and consent date"
Multi-ConditionalRoute based on compliance_result: PASS → Dashboard Output, FAIL → Send Email
Dashboard OutputShow compliant records in a Table Tile
Send EmailEmail compliance team with list of violations

Result

An automated weekly compliance audit that surfaces violations to the right people and tracks compliant records on a dashboard.


Example 6: Open Support Tickets Tracker

Monitor open support tickets from Zendesk and display on a dashboard.

Node Chain

Schedule Trigger → Zendesk List Tickets → Filter → Aggregation → Dashboard Output

Configuration

NodeSettings
Schedule TriggerRun every 30 minutes
Zendesk List TicketsConnect to Zendesk. Fetch all tickets.
FilterFilter where status = 'open'
AggregationCount tickets, group by priority
Dashboard OutputOutput to a Metric Tile named "Open Tickets by Priority"

Result

A real-time metric tile showing open support tickets grouped by priority level.


Building Your Own Workflows

These examples use a small fraction of the 170+ available nodes. Explore the full Node Library to discover all available data sources, transformations, AI nodes, and output options.

Key tips: