GET api/todolists

GET /api/todolists

Responses

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