Retrieve Task History

get

/tasks/{id}/history

Retrieves the history of a task.

Request

There are no request parameters for this operation.

Response

Supported Media Types
  • application/json
  • application/xml
200 Response
Success
Body
Root Schema : /paths/~1tasks~1{id}~1history/get/responses/200/schema
Example application/json

{
    "levels":0,
    "links":[
        {
            "href":"http://example.com/bpm/api/3.0/tasks/200003",
            "length":0,
            "rel":"back"
        },
        {
            "href":"http://example.com/bpm/api/3.0/tasks/200003/history",
            "length":0,
            "rel":"self"
        }
    ],
    "taskHistory":[
        {
            "actionName":"Assigned",
            "displayName":"John Steinbeck",
            "userId":"jstein",
            "pattern":"Participant",
            "reason":"",
            "updatedDate":"2015-03-09 15:39:08"
        }
    ]
}