タスク履歴の取得

get
/tasks/{id}/history
タスクの履歴を取得します。

この操作のリクエスト・パラメータはありません。

次の表に、サーバー・レスポンスをまとめます。

サポートされているメディア・タイプ
  • application/json
  • application/xml

200 レスポンス

成功
本文
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"
        }
    ]
}