Contents

Chapter 1

Features

This chapter covers the core features and capabilities of Onboarding Flow.

Features

  • Multi-step flows — Define ordered onboarding steps (form, choice, info, action types)
  • Progressive profiling — Collect user data across multiple steps without overwhelming them
  • Conditional steps — Show/hide steps based on user attributes (role, plan, etc.)
  • Skip support — Optional steps can be skipped; required steps must be completed
  • Completion tracking — Percentage-based progress tracking per user
  • Welcome emails — HTML email templates with step overview and CTA buttons
  • Completion emails — Congratulations email with summary of completed/skipped steps
  • Template engine — Built-in {{variable}} and {{#if condition}} template rendering
  • JSON persistence — Save/load flow definitions and user progress

Requirements

  • Python 3.10+
  • No external dependencies (stdlib only)
Chapter 2

Quick Start

Follow this guide to get Onboarding Flow up and running in your environment.

Quick Start

bash
# Start with demo flow
python src/main.py --init-demo

# Custom port
python src/main.py --port 8002

Then try the API:

bash
# List available flows
curl http://localhost:8002/api/flows

# Start onboarding for a user
curl -X POST http://localhost:8002/api/flows/<flow_id>/start \
  -H "Content-Type: application/json" \
  -d '{"user_id": "user_123", "context": {"role": "admin"}}'

# Complete a step
curl -X POST http://localhost:8002/api/flows/<flow_id>/complete-step \
  -H "Content-Type: application/json" \
  -d '{"user_id": "user_123", "step_id": "profile", "data": {"company": "Acme Corp"}}'

# Check progress
curl http://localhost:8002/api/flows/<flow_id>/progress/user_123

API Endpoints

MethodPathDescription
GET/api/flowsList all onboarding flows
POST/api/flows/:flow_id/startStart a user on a flow
POST/api/flows/:flow_id/complete-stepComplete a step with data
GET/api/flows/:flow_id/progress/:user_idGet user's progress
Chapter 3
🔒 Available in full product

Project Structure

You’ve reached the end of the free preview

Get the full Onboarding Flow and unlock everything.

All Chapters

Get the complete guide with every chapter unlocked, including code samples, diagrams, and best practices.

Full Tool Suite

Access all interactive tools with complete data, all workload profiles, and the full scenario library.

Source Files

Downloadable source code, configuration files, and working examples from every chapter.

Lifetime Updates

Free updates for life. Every new chapter, tool, and improvement included.

Buy Now — $19 →
📦 Free sample included — download another copy for the full product.
Onboarding Flow v1.0.0 — Free Preview