/note-api

Primary LanguageJavaScript

A Note API

This api is designed to do a crud operation in note data management

End points

localhost:3000/api/todo - GET Get all todos
localhost:3000/api/todo/:id - GET Get a specific todo by id
localhost:3000/api/todo - POST Create a new todo
localhost:3000/api/todo/:id - PUT update a specific todo by id
localhost:3000/api/todo/:id - DELETE remove a specific todo by id
localhost:3000/api/todo/page/:page_no - GET Get a specific page of todos grouped by 10