Add a new task to the TODO list
Adds a new task to the TODO list and sets the status to 'new'
POST /tasks
curl \
-X POST https://api.todolist.local/v1/tasks \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (201)
{
"id": 3,
"status": "new",
"description": "Read a book"
}