Ticket Sales Daily Digest
Example prompt: "Every morning at 8am, pull yesterday's ticket sales from Eventbrite, compare them against our pacing target in the Google Sheet, and post a short digest to the #event-ops Slack channel. If we're more than 15% behind pace with less than 30 days to go, flag it as urgent."
The Problem
Ticket sales for an event tend to follow a curve — slow start, gradual build, a sharper rise in the last few weeks. The team needs to know early when sales are behind that curve, because marketing decisions have lead time and a panic in the final fortnight is too late. Pulling sales out of the ticketing platform every morning, lining the numbers up against a spreadsheet target, and writing a few sentences in Slack is the kind of task that quietly takes 15 minutes a day for the run-up to every event.
How GloriaMundo Solves It
We build a scheduled workflow that runs each morning. An integration step pulls yesterday's ticket sales from Eventbrite, broken down by ticket tier. A second integration step reads the pacing target and historical day-by-day totals from a Google Sheet. A code step calculates day-on-day growth, the cumulative sales-to-date, the percentage of the target sold, and how far ahead or behind pace you are. An LLM step turns those numbers into a three- or four-line plain-English summary — on track, drifting, or behind — and lists which tiers are pulling their weight. A conditional step decides whether the digest should be flagged as urgent. A final integration step posts the digest to Slack and appends the day's snapshot to the tracking sheet so the history is preserved. Glass Box preview shows the calculations and the draft message before it posts, so you can sanity-check a surprising number before the team sees it.
Example Workflow Steps
- Trigger (scheduled): Runs daily at 08:00.
- Step 1 (integration): Pull yesterday's ticket sales from Eventbrite, grouped by tier.
- Step 2 (integration): Read the pacing target and cumulative totals from the Google Sheet.
- Step 3 (code): Calculate yesterday's growth, cumulative-to-date, percentage of target, and the gap against pace.
- Step 4 (LLM): Draft a short Slack-style digest covering pace, tier-by-tier breakdown, and the headline number.
- Step 5 (conditional): If the gap against pace exceeds 15% and the event is within 30 days, flag the digest as urgent.
- Step 6 (integration): Post the digest to Slack and append yesterday's snapshot to the sheet.
Integrations Used
- Eventbrite — source of ticket sales by tier
- Google Sheets — pacing target and historical day-by-day totals
- Slack — delivers the daily digest to the event operations channel
Who This Is For
Event marketers and producers running paid events with multi-week sales windows, where the team needs daily visibility on pace without anyone owning a 15-minute manual ritual every morning.
Time & Cost Saved
A manual daily snapshot takes 10-15 minutes when it gets done at all, which is often the problem — the day it would have caught a slowdown is the day it gets skipped. This workflow produces the same digest every morning at the same time and preserves the historical trace in the sheet. Uses integration, code, LLM, and conditional steps, costing a small number of credits per run.