Complete below APIs - GET /tasks/{id} get a task by id - DELETE /tasks/{id} delete task by id - PATCH /tasks/{id} update details of a task - GET /tasks/{id}/notes show all notes of a task - POST /tasks/{id}/notes add notes to a task - DELETE /tasks/{id}/notes/{nid} delete a note from a task
Complete below APIs