Implemented a full CRUD workflow using a public API, validating object lifecycle from creation to deletion and confirming state changes across requests. Validates how multiple API calls work together in a real user journey.
Step To Reproduce:
- Get All Products
- Create a Product
- Get Product created
- Update Product: Title and Price
- Delete Product
- Validate deletion
API Workflow Testing Workflow

Workflow Execution in Postman:

What It shows:
- Full API workflow (CRUD operations)
- Data consistency across requests
- State changes validation (create → update → delete)
- System behaviour after resource deletion
- End-to-end product lifecycle testing
Instead of testing a single endpoint, we test a sequence of dependent actions.
“A single API call may pass. A workflow reveals the real behaviour”