Problem Statement
Which UML diagram best explains request flow, calls, and timing between services?
Explanation
A sequence diagram shows lifelines and messages across participants over time. It clarifies who calls whom, retries, and error paths.
This is ideal to reason about APIs, timeouts, and idempotency in a distributed system.
Code Solution
SolutionRead Only
User -> API -> Auth -> API -> Orders
