Automations let your app do work for you in the background. You use them when something should happen automatically instead of waiting for someone to open the app and click a button.Documentation Index
Fetch the complete documentation index at: https://docs.kazzle.com/llms.txt
Use this file to discover all available pages before exploring further.
Two kinds
| Automation | Trigger | Good for |
|---|---|---|
| Scheduled | A time you set | Digests, cleanup jobs, reports, sync jobs |
| Webhook | An incoming HTTP request | Stripe events, GitHub events, form submissions |
How automations fit into apps
An automation is usually a background part of an app.Scheduled automations
Run on a schedule. Examples:- Send a daily sales digest at 9am
- Clean up old records every night
- Sync data from another system every 15 minutes
Webhook automations
Run when another service sends an event. Examples:- Run when Stripe sends a payment event
- Run when GitHub sends a push event
- Run when a form provider sends a submission
What happens on each run
When an automation triggers:- The app receives the trigger
- Kazzle runs the job
- The run is recorded
- You can check whether it worked
Automations vs always-on servers
| Process type | Runs when | Example |
|---|---|---|
| Automation | Schedule or webhook trigger | Nightly digest, Stripe webhook |
| Server | Continuously | API backend, auth service |