Retrieve the details for a task on the TODO list
Returns the details for a task from the TODO list by identifier
Path parameters
-
The ID of the task to operate on
GET /tasks/{taskId}
curl \
-X GET https://api.todolist.local/v1/tasks/3 \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"id": 3,
"status": "new",
"description": "Read a book"
}