0
0
Postmantesting~5 mins

Send request block in Postman - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
AFormats the request body automatically
BCreates a new API endpoint
CExecutes an HTTP request and shows the response
DDeletes the server data
Which tab in Postman lets you add headers before sending a request?
ABody
BHeaders
CTests
DPre-request Script
If you get a 404 status code after sending a request, what does it mean?
AResource not found
BServer error
CRequest was successful
DUnauthorized access
Which HTTP method is typically used to retrieve data in the 'Send request' block?
APUT
BPOST
CDELETE
DGET
Why should you check the response body after sending a request?
ATo verify the server returned the correct data
BTo change the request headers
CTo delete the request
DTo create a new request
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.