Recall & Review
beginner
What is a JSON body in API testing?
A JSON body is the data sent in the request payload formatted as JSON. It tells the server what information the client wants to send or update.
Click to reveal answer
beginner
Why do we use JSON format for request bodies in Postman?
JSON is easy to read and write, lightweight, and widely supported by APIs. It helps structure data clearly for communication between client and server.
Click to reveal answer
beginner
How do you set a JSON body in Postman?
In Postman, select the 'Body' tab, choose 'raw', then select 'JSON' from the dropdown. Then type or paste your JSON data.
Click to reveal answer
intermediate
What happens if your JSON body is not valid?
The server may reject the request with an error, or the API may not work as expected. Postman also shows an error if JSON syntax is incorrect.
Click to reveal answer
beginner
Give an example of a simple JSON body for creating a user with name and email.
{
"name": "Alice",
"email": "alice@example.com"
}
Click to reveal answer
What format should the request body be in when sending JSON data in Postman?
✗ Incorrect
To send JSON data, you must select 'raw' and then choose 'JSON' so Postman sends the data correctly.
Which of these is a valid JSON body?
✗ Incorrect
Valid JSON requires double quotes around keys and string values, like in option A.
What error might you get if your JSON body is missing a closing brace?
✗ Incorrect
Missing braces cause syntax errors because the JSON is not well-formed.
In Postman, where do you enter the JSON body for a POST request?
✗ Incorrect
The Body tab is where you input the data you want to send in the request.
Why is JSON preferred over XML for API request bodies?
✗ Incorrect
JSON is lightweight and easier for humans and machines to read and write compared to XML.
Explain how to create and send a JSON body in Postman for an API request.
Think about the steps in Postman interface to send JSON data.
You got /5 concepts.
Describe common errors that can happen with JSON bodies and how to avoid them.
Consider what makes JSON invalid and how Postman helps.
You got /5 concepts.