Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

User Onboarding Workflow

business-operations

New user onboarding workflow with welcome email, profile setup, product tour, first action prompt, and activation milestone tracking.

Full FlowZap Code

customer { # Customer
  n1: circle label:"Start User Onboarding"
  n3: rectangle label:"Review User Onboarding details"
  n5: rectangle label:"Update records for User Onboarding"
  n7: circle label:"End User Onboarding"

  n1.handle(bottom) -> agent.n2.handle(top)
  n3.handle(bottom) -> agent.n4.handle(top) [label="Processed"]
  n5.handle(bottom) -> agent.n6.handle(top)
}
agent { # Agent
  n2: rectangle label:"Receive User Onboarding request"
  n4: rectangle label:"Make User Onboarding decision"
  n6: diamond label:"Continue User Onboarding process"

  n2.handle(bottom) -> customer.n3.handle(top)
  n4.handle(bottom) -> customer.n5.handle(top)
  n6.handle(bottom) -> customer.n7.handle(top) [label="Success"]
  n6.handle(right) -> customer.n5.handle(right) [label="Retry/Rejected"]
}

Related templates

Ab Test Setup Workflow

business-operations

A/B test setup workflow with hypothesis definition, variant creation, traffic allocation, statistical analysis, and winner deployment.

Account Deletion Workflow

business-operations

Account deletion workflow with cancellation reason capture, retention offer, subscription termination, data cleanup, and confirmation email.

Api Key Rotation Workflow

business-operations

API key rotation workflow with new key generation, dual-key transition period, client notification, old key deprecation, and audit logging.

Billing Dispute Workflow

business-operations

Billing dispute workflow with dispute intake, transaction review, fraud analysis, resolution decision, and chargeback response handling.

Cohort Analysis Workflow

business-operations

Cohort analysis workflow with user segmentation by signup date, retention curve calculation, LTV projection, and behavioral pattern identification.