Node.js and Express Tutorial: Building and Securing RESTful APIs

Ooooooook, the problem was a missing “” on title,
I was sending the JSON body as:
{
title: “Something”
}

And now that im sending:
{
“title”: “something”
}

Its working, im sorry, and thanks for the tutorial.

1 Like