GET api/tasks

GET /api/tasks

Responses

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • taskId integer(int64)
    • todoList object
    • title string
    • description string
    • dueDate string
    • author string
    • isCompleted integer(int32)
GET /api/tasks
curl \
 -X GET https://TodoListRestApi/api/tasks
Response examples (200)
[
  {
    "taskId": 42,
    "todoList": {},
    "title": "string",
    "description": "string",
    "dueDate": "string",
    "author": "string",
    "isCompleted": 42
  }
]