API
- Create an account on rohilla.co.in for testing the Task Manager API
- Send a GET request to /task-manager/api/auth/token to get the Bearer type access token by sending your email and password as json in request body
- A task has two parameters - name=string and completed=boolean
Base URL : api.rohilla.co.in/task-manager
POST /api - create a task
GET /api/:id - get a task by id
PATCH /api/:id - update a task by id
DELETE /api/:id - delete a task by id
GET /api - get all tasks
DELETE /api - delete all tasks
PATCH /api - mark/unmark all tasks