Cookbook

Practical workflow recipes for common automation tasks.

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

  1. Create a New Workflow in the editor.
  2. Follow the recipe's node list and configuration.
  3. Connect your app accounts and API keys where indicated.
  4. 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

RecipeNodes usedDifficulty
Webhook to Slack notificationStart, Transform, ActionEasy
Daily AI content digestStart, HTTP, AI, ActionEasy
Email triage with AIStart, AI, Condition, ActionMedium
API data pipelineStart, HTTP, Function, Transform, ActionMedium
Google Sheets to SlackStart, Action, Loop, ActionMedium
Scheduled report generatorStart, HTTP, AI, Transform, ActionMedium
Multi-branch approval flowStart, AI, Condition, Action, ActionAdvanced
Social content pipelineStart, AI, Transform, Loop, AI, ActionAdvanced

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.