0
0
Postmantesting~5 mins

JSON body in Postman - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
Araw with JSON selected
Bform-data
Cx-www-form-urlencoded
Dbinary
Which of these is a valid JSON body?
A<name>Bob</name>
B{name: 'Bob', age: 30}
C{"name": "Bob", "age": 30}
Dname=Bob&age=30
What error might you get if your JSON body is missing a closing brace?
A401 Unauthorized
BSyntaxError or parsing error
C404 Not Found
DTimeout error
In Postman, where do you enter the JSON body for a POST request?
ABody tab
BHeaders tab
CParams tab
DAuthorization tab
Why is JSON preferred over XML for API request bodies?
AJSON is heavier and slower
BJSON requires special software to read
CXML is not supported by APIs
DJSON is easier to read and write
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.