GET api/users

GET /api/users

Responses

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