GET
/tasks/{taskId}
curl \
--request GET 'https://api.todolist.local/v1/tasks/3' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"id": 3,
"status": "new",
"description": "Read a book"
}