GET api/todolists/{id}
Path parameters
-
id
integer(int64) Required
GET
/api/todolists/{id}
curl \
-X GET https://TodoListRestApi/api/todolists/{id}
Response examples (200)
{
"listId": 42,
"user": {},
"title": "string",
"description": "string",
"tasks": [
{
"taskId": 42,
"todoList": {},
"title": "string",
"description": "string",
"dueDate": "string",
"author": "string",
"isCompleted": 42
}
]
}