GET api/tasks/{id}

GET /api/tasks/{id}

Path parameters

  • id integer(int64) Required

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/{id}
curl \
 -X GET https://TodoListRestApi/api/tasks/{id}
Response examples (200)
{
  "taskId": 42,
  "todoList": {},
  "title": "string",
  "description": "string",
  "dueDate": "string",
  "author": "string",
  "isCompleted": 42
}