iamshaunjp / rest-api-playlist

Course files for the REST API tutorial series on The Net Ninja Youtube channel
170 stars 168 forks source link

ValidationError: name: Name field is required #4

Closed DavidNolander closed 6 years ago

DavidNolander commented 6 years ago

Great stuff but get stuck on chapter 9.

Trying to POST in postman to http://localhost:4000/api/ninjas with body:

{ "name": "Ninja" }

but it seems that the POST does not send the body since my consoles logs: (node:14148) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 5): ValidationError: name: Name field is required

any clue why validation fails spite having a name in the body=

DavidNolander commented 6 years ago

Never mind....

Forgot to change body to JSON in Postman.......