I am trying to create Student and Teacher profiles while using Jmeter. So I am submitting a POST HTTP request in Jmeter getting
Response code: 422, Response Message: unprocessable entity error
But the same requests are succeeding in Postman.
Here is the POST request for Student:
{
"mobile_country":"60",
"mobile_number":"189557840",
"name":"Reddy",
"email":"reddy@gmail.com",
"gender":"male",
"enrollment_date":"2022-09-01",
"description":"social teacher"
}
Please help me, how to resolve this issue. Thanks in advance