POST api/tasks

POST /api/tasks
application/json

Body Required

Responses

POST /api/tasks
curl \
 -X POST https://TodoListRestApi/api/tasks \
 -H "Content-Type: application/json" \
 -d '{"taskId":42,"todoList":{},"title":"string","description":"string","dueDate":"string","author":"string","isCompleted":42}'
Request example
{
  "taskId": 42,
  "todoList": {},
  "title": "string",
  "description": "string",
  "dueDate": "string",
  "author": "string",
  "isCompleted": 42
}
Response examples (200)
{
  "taskId": 42,
  "todoList": {},
  "title": "string",
  "description": "string",
  "dueDate": "string",
  "author": "string",
  "isCompleted": 42
}