Create and run a simple Postman flow to send a GET request and verify response
Preconditions (3)
Step 1: Open Postman and click on 'Flows' tab
Step 2: Click 'Create Flow' button
Step 3: Drag and drop a 'Request' node onto the canvas
Step 4: Configure the Request node with method GET and URL 'https://jsonplaceholder.typicode.com/posts/1'
Step 5: Drag and drop a 'Test' node onto the canvas
Step 6: Connect the Request node output to the Test node input
Step 7: In the Test node, add a test script to verify the response status code is 200
Step 8: Click 'Run' button to execute the flow
✅ Expected Result: The flow runs successfully, sending the GET request and the test node verifies the response status code is 200, showing a pass result