Skip to content

Latest commit

 

History

History
64 lines (63 loc) · 1.59 KB

README.md

File metadata and controls

64 lines (63 loc) · 1.59 KB

API Documentation

View All todo

URL - localhost:8000/api/todo/gets
Request - GET
Params - None
Screenshot (506)

View Individual todo

URL - localhost:8000/api/todo/get/{id}
Request - GET
Params - None
Example - localhost:8000/api/todo/get/1
Screenshot (507)

Create todo

URL - localhost:8000/api/todo/store
Request - POST
Params - name,content
Example - localhost:8000/api/todo/store?name=trirhd&content=wefwgfewgqewrgg
Screenshot (508)

Update todo

URL - localhost:8000/api/todo/update/{id}
Request - PUT
Params - name,content
Example - localhost:8000/api/todo/update/1?name=Extra_Task&content=ewsd
Screenshot (509)

Delete todo

URL - localhost:8000/api/todo/delete/{id}
Request - DELETE
Params - None
Example - localhost:8000/api/todo/delete/3
Screenshot (510)