Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 429 Bytes

readme.md

File metadata and controls

15 lines (10 loc) · 429 Bytes

TODO-REST-API

A simple todo list REST API built using express, nodejs and mongodb

Endpoints:

  • POST /login - log in existing user
  • POST /signup - sign up as a new user
  • GET /todos - get user specific list of todos
  • POST /todos - create a new todo item
  • PUT /todos/:id - update an existing todo
  • DELETE /todos/:id - delete an existing todo item
  • GET /todos/:id - get a single todo