422 Unprocessable Entity for POST Call

While sending below Post REQUEST to create new user in the end point : https://gorest.co.in/public/v2/users , [ { "email": "[email protected]", "name": "Ric Jais", "gender": "female", "status": "active" } ]

It gives below- [ { "field": "email", "message": "can't be blank" }, { "field": "name", "message": "can't be blank" }, { "field": "gender", "message": "can't be blank, can be male of female" }, { "field": "status", "message": "can't be blank" } ]

Worked with below payload- { "name": "Test Auto User", "email": "[email protected]", "gender": "male", "status": "active" }


Little markdown supported