[Solved] When post request is done in postman it passes all the values as NULL

It looks like the JSON that you’re sending as your POST payload is not a representation of a Student object. Instead, it’s a representation of an object that contains two members, a Student object named student, and a String named id. { “student”:{ //<– This is a Student object “firstname”: “jay”, “lastname”: “patel”, “studentId”: “2”, … Read more