Demo: convert Postman requests into an API sequence
Postman collections often describe a workflow across many requests. A sequence diagram helps explain authentication, resource creation, polling, and cleanup steps.
- Use folder order as the default scenario order.
- Include request names, methods, and URLs in message labels.
- Treat tests and scripts as notes when they affect the flow.
POST /auth/token -> token
POST /orders -> orderId
GET /orders/:id -> status
DELETE /orders/:id -> cleanup