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

同意管理工作流

business-operations

用户同意管理工作流,包括 Cookie 弹窗、偏好中心、同意记录、下游系统同步以及审计追踪。

完整 FlowZap 代码

Visitor { # Visitor
n1: circle label:"Start"
n2: rectangle label:"Land on website"
n3: rectangle label:"View cookie banner"
n4: diamond label:"Accept all cookies?"
n5: rectangle label:"Customize preferences"
n6: rectangle label:"Browse with preferences"
n7: circle label:"End"
n1.handle(right) -> n2.handle(left)
n2.handle(bottom) -> ConsentPlatform.n8.handle(top) [label="Check consent"]
n3.handle(right) -> n4.handle(left)
n4.handle(right) -> n6.handle(left) [label="Yes"]
n4.handle(bottom) -> n5.handle(top) [label="No"]
n5.handle(bottom) -> ConsentPlatform.n12.handle(top) [label="Save choices"]
n6.handle(right) -> n7.handle(left)
}
ConsentPlatform { # Consent Platform
n8: diamond label:"Prior consent exists?"
n9: rectangle label:"Load saved preferences"
n10: rectangle label:"Show cookie banner"
n11: rectangle label:"Store consent record"
n12: rectangle label:"Update preference record"
n13: rectangle label:"Sync with ad platforms"
n8.handle(right) -> n9.handle(left) [label="Yes"]
n8.handle(bottom) -> n10.handle(top) [label="No"]
n9.handle(top) -> Visitor.n6.handle(bottom) [label="Apply"]
n10.handle(top) -> Visitor.n3.handle(bottom) [label="Display"]
n11.handle(right) -> n13.handle(left)
n12.handle(right) -> n11.handle(left)
n13.handle(top) -> Visitor.n6.handle(bottom) [label="Ready"]
}
Analytics { # Analytics
n14: rectangle label:"Check consent for tracking"
n15: diamond label:"Analytics consent given?"
n16: rectangle label:"Initialize tracking scripts"
n17: rectangle label:"Run in privacy mode"
n14.handle(right) -> n15.handle(left)
n15.handle(right) -> n16.handle(left) [label="Yes"]
n15.handle(bottom) -> n17.handle(top) [label="No"]
n16.handle(top) -> Visitor.n6.handle(bottom) [label="Tracking active"]
n17.handle(top) -> Visitor.n6.handle(bottom) [label="Limited mode"]
}

相关模板

API 密钥轮换工作流程

business-operations

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

数据导出工作流程

business-operations

用户数据导出工作流程,包括导出请求、异步任务处理、数据汇总、安全文件生成以及下载链接发送。

GDPR 删除工作流

business-operations

GDPR 数据删除工作流,具有身份验证、数据清单扫描、跨系统 PII 移除、备份清除和删除确认。

账户删除工作流程

business-operations

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