Skip to content

scottyob/taskwarrior-simple-rest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A (very) simple HTTP API for TaskWarrior.

This doesn't even do authentication.

API

/ endpoint

GET

Gets a list of all active tasks

RESPONSE

{
    "tasks": [
        {
            "uuid": "uuid-of-task",
            "description": "title of task",
            "notes": "Detailed note of task"
        }
    ]
}

/new endpoint

POST

Creates a new Taskwarrior task

REQUEST

{ "description": "title", "notes": "Task notes", }

RESPONSE

OK!

About

A simple rest API for Taskwarrior written in Rust

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors