32 / 81 · Module 10 — Synchronous vs Asynchronous Integrations · filtered: interview← prev⊞ allnext →
10.39Hybrid pattern
Very common:
POST /orders
↓
validate
↓
create core order synchronously
↓
publish OrderCreated event
↓
201 Created
Then async consumers do:
analytics
marketing
email
CRM enrichment
This keeps critical path short.