Skip to content

API V1 Documentation

robertsosinski edited this page Mar 23, 2012 · 1 revision

Introduction goes here...

Tasks

Interacting with Tasks.

List

Get a list of tasks.

GET /api/v1/tasks
{
  "size":5,
  "data":[
    {
      "id":37,
      "name":"Wash dishes",
      "done":true
    },
    {
      "id":38,
      "name":"Do laundry",
      "done":false
    },
    {
      "id":39,
      "name":"Fix door",
      "done":true
    },{
      "id":40,
      "name":"Vacuum floor",
      "done":false
    }
  ]
}
Clone this wiki locally