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'
Path parameters
-
The ID of the task to operate on
DELETE /tasks/{taskId}
curl \
-X DELETE https://api.todolist.local/v1/tasks/3 \
-H "Authorization: Bearer $ACCESS_TOKEN"