Compound Tasks - Huddle/huddle-apis GitHub Wiki

Summary

A compound task represents a collection of tasks may be grouped together have an status to show the overall progress.

Available Operations

Operation
Retrieving a compound task
Updating a compound task
Adding a task to the collection
Removing a task from the collection

Retrieving a compound task

Request

GET /compoundtask/12345 HTTP/1.1
Accept: application/json
Authorization: OAuth2 frootymcnooty/vonbootycherooty

Response

{
  "links" : [
    "self" : ...
  ],
  "created" : "2011-05-05T09:48:35.0151000Z",
  "updated" : "2011-05-06T11:48:35.0151000Z",
  "status" : ...,
  "tasks" : [
    ..
  ],
  "creator" : ..
}