GET
/tasks
curl \
--request GET 'https://api.todolist.local/v1/tasks' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": 1,
"status": "completed",
"description": "Buy milk"
},
{
"id": 2,
"status": "in progress",
"description": "Send email to John"
}
]