A (very) simple HTTP API for TaskWarrior.
This doesn't even do authentication.
Gets a list of all active tasks
{
"tasks": [
{
"uuid": "uuid-of-task",
"description": "title of task",
"notes": "Detailed note of task"
}
]
}
Creates a new Taskwarrior task
{ "description": "title", "notes": "Task notes", }
OK!