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 \
--request POST https://api.todolist.local/v1/tasks \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (201)
{
"id": 3,
"status": "new",
"description": "Read a book"
}