List available tasks on the TODO list
Lists tasks that have been created, with a default filter of 'new' and 'in progress' tasks unless specified otherwise
Query parameters
-
status string
Filters the list of tasks by the status provided
GET /tasks
curl \
-X GET https://api.todolist.local/v1/tasks \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": 1,
"status": "completed",
"description": "Buy milk"
},
{
"id": 2,
"status": "in progress",
"description": "Send email to John"
}
]