curl http://host:port/api/notes/{noteId}
curl http://host:port/api/notes
curl -X POST http://host:port/api/notes -H "Content-Type: application/json" -d '{ "title": "something to get done" }'
curl -X PATCH http://host:port/api/notes/{noteId} -H "Content-Type: application/json" -d '{ "title": "updated" }'
curl -X DELETE http://host:port/api/notes/{noteId}