Lists tasks that have been created, with a default filter of 'new' and 'in progress' tasks unless specified otherwise
GET
/tasks
curl \
--request GET 'https://api.todolist.local/v1/tasks' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": 1,
"description": "Buy milk",
"status": "completed"
},
{
"id": 2,
"description": "Send email to John",
"status": "in progress"
}
]