Remove a task from the TODO list
Permanently removes a task from the TODO list. If a task was completed, use PUT /tasks/{taskId} to update its status to 'completed'
DELETE
/tasks/{taskId}
curl \
--request DELETE 'https://api.todolist.local/v1/tasks/3' \
--header "Authorization: Bearer $ACCESS_TOKEN"