Recall & Review
beginner
What is the purpose of the 'Send request' block in Postman?
The 'Send request' block is used to execute an HTTP request to a server and receive the response. It helps testers check if the API behaves as expected.
Click to reveal answer
beginner
Which HTTP methods can you use in the 'Send request' block?
You can use methods like GET, POST, PUT, DELETE, PATCH, and others depending on what the API supports.
Click to reveal answer
beginner
How do you add headers in the 'Send request' block?
Headers can be added in the Headers tab by specifying key-value pairs, such as Content-Type or Authorization, to provide extra information to the server.
Click to reveal answer
beginner
What does a successful response status code like 200 mean after sending a request?
A 200 status code means the request was successful and the server returned the expected data.
Click to reveal answer
beginner
Why is it important to check the response body after sending a request?
Checking the response body helps verify that the server returned the correct data or message, ensuring the API works as intended.
Click to reveal answer
What does the 'Send request' block in Postman do?
✗ Incorrect
The 'Send request' block sends the HTTP request to the server and displays the response for testing.
Which tab in Postman lets you add headers before sending a request?
✗ Incorrect
The Headers tab is where you add key-value pairs to send extra information with the request.
If you get a 404 status code after sending a request, what does it mean?
✗ Incorrect
A 404 status code means the requested resource was not found on the server.
Which HTTP method is typically used to retrieve data in the 'Send request' block?
✗ Incorrect
GET is used to request data from a server.
Why should you check the response body after sending a request?
✗ Incorrect
The response body shows the data or message returned by the server, confirming if the API works correctly.
Explain the steps to send a request using Postman's 'Send request' block and how to verify the response.
Think about what you do before and after clicking Send.
You got /7 concepts.
Describe why checking both the status code and response body is important after sending a request.
Consider what each part tells you about the server's reply.
You got /3 concepts.