- GET: https://crud-notes-app.herokuapp.com/api/notes
- GET: https://crud-notes-app.herokuapp.com/api/notes/:id
- POST: https://crud-notes-app.herokuapp.com/api/notes + Body
- PUT: https://crud-notes-app.herokuapp.com/api/notes/:id + Body
- DELETE: https://crud-notes-app.herokuapp.com/api/notes/:id
Use POSTMAN or Thunder Client (VS Code Extension) to test API
{
content: String,
important: Boolean
}