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

账单争议工作流

business-operations

账单争议工作流,包括争议接收、交易审查、欺诈分析、解决决策和退款响应处理。

完整 FlowZap 代码

Customer { # Customer
  n1: circle label:"Start"
  n2: rectangle label:"Submit dispute with evidence"
  n3: rectangle label:"Receive resolution notification"
  n4: diamond label:"Accept resolution?"
  n5: rectangle label:"Acknowledge closure"
  n6: circle label:"End"

  n1.handle(right) -> n2.handle(left)
  n2.handle(bottom) -> Support.n7.handle(top) [label="Open ticket"]
  n3.handle(right) -> n4.handle(left)
  n4.handle(right) -> n5.handle(left) [label="Yes"]
  n4.handle(bottom) -> Support.n12.handle(top) [label="No - Escalate"]
  n5.handle(right) -> n6.handle(left)
}
Support { # Support
  n7: rectangle label:"Log dispute details"
  n8: rectangle label:"Gather transaction history"
  n9: diamond label:"Clear billing error?"
  n10: rectangle label:"Issue refund or credit"
  n11: rectangle label:"Prepare denial explanation"
  n12: rectangle label:"Escalate to supervisor"

  n7.handle(right) -> n8.handle(left)
  n8.handle(bottom) -> Finance.n13.handle(top) [label="Request review"]
  n9.handle(right) -> n10.handle(left) [label="Yes"]
  n9.handle(bottom) -> n11.handle(top) [label="No"]
  n10.handle(top) -> Customer.n3.handle(bottom) [label="Approved"]
  n11.handle(top) -> Customer.n3.handle(bottom) [label="Denied"]
  n12.handle(bottom) -> Finance.n16.handle(top) [label="Review needed"]
}
Finance { # Finance
  n13: rectangle label:"Verify charges against records"
  n14: diamond label:"Discrepancy found?"
  n15: rectangle label:"Document findings"
  n16: rectangle label:"Manager review"
  n17: rectangle label:"Final decision"

  n13.handle(right) -> n14.handle(left)
  n14.handle(right) -> n15.handle(left) [label="Yes"]
  n14.handle(bottom) -> n15.handle(bottom) [label="No"]
  n15.handle(top) -> Support.n9.handle(bottom) [label="Report"]
  n16.handle(right) -> n17.handle(left)
  n17.handle(top) -> Customer.n3.handle(bottom) [label="Final resolution"]
}

相关模板

支付失败工作流

business-operations

支付失败恢复工作流,带有智能重试调度、催款邮件序列、支付方式更新提示和非自愿流失预防。

账户删除工作流程

business-operations

账户删除工作流程,包含**取消原因捕获**、**留存优惠**、**订阅终止**、**数据清理**和**确认邮件**。

API 密钥轮换工作流程

business-operations

API 密钥轮换工作流程,包含**新密钥生成**、**双密钥过渡期**、**客户端通知**、**旧密钥弃用**和**审计日志记录**。

队列分析工作流

business-operations

队列分析工作流,包含按注册日期的用户分段、留存曲线计算、LTV预测以及行为模式识别。