CRUD features to manage match schedules.
- user will able to create new schedule from the web
- users will be able to edit the existing schedule
- user can delete schedule data
- user can see the list of existing schedule data
Database cloud, MangoDB Atlas
Base URL
http://localhost:8000/-
-
Get all data
Method : GET localhost:<port>/rest/
-
Add new data
Method : POST localhost:<port>/rest/<id>
-
Update data by 'id'
Method : PUT localhost:<port>/rest/<id>
-
Delete data by 'id'
Method : DELETE localhost:<port>/rest/<id>
-
-
[ { "schedule_name": "Bowling", "schedule_time": "Friday" }, { "schedule_name": "Futsal", "schedule_time": "Friday" } ]