The TogoFlow Cookbook is a collection of ready-to-build workflow patterns. Each recipe describes what the workflow does, which nodes to use, and how to configure them.
How to use these recipes
- Create a New Workflow in the editor.
- Follow the recipe's node list and configuration.
- Connect your app accounts and API keys where indicated.
- Test with a Manual trigger, then switch to the production trigger.
Recipes describe the workflow in plain language and configuration tables — build them visually in the editor rather than pasting JSON.
Recipe index
| Recipe | Nodes used | Difficulty |
|---|---|---|
| Webhook to Slack notification | Start, Transform, Action | Easy |
| Daily AI content digest | Start, HTTP, AI, Action | Easy |
| Email triage with AI | Start, AI, Condition, Action | Medium |
| API data pipeline | Start, HTTP, Function, Transform, Action | Medium |
| Google Sheets to Slack | Start, Action, Loop, Action | Medium |
| Scheduled report generator | Start, HTTP, AI, Transform, Action | Medium |
| Multi-branch approval flow | Start, AI, Condition, Action, Action | Advanced |
| Social content pipeline | Start, AI, Transform, Loop, AI, Action | Advanced |
Common patterns
Fetch → Process → Deliver
Start → HTTP Request → AI/Transform → Action (send/post/save)
The most common pattern. Fetch data from an API, process it, and deliver the result.
Trigger → Classify → Route
Start (App/Webhook) → AI (classify) → Condition → Action A or Action B
Use AI to categorize incoming data, then route to different actions.
Schedule → Generate → Distribute
Start (Schedule) → AI (generate) → Loop → Action (post/send each)
Generate content on a schedule and distribute to multiple channels.
Webhook → Transform → API
Start (Webhook) → Transform (reshape) → HTTP Request (forward)
Receive data, reshape it, and forward to another service.
Tips for all recipes
- Start with Manual trigger for testing.
- Use workflow variables for API keys and configurable values.
- Check Execution Data after each test run.
- Save your workflow before switching to production triggers.