タスク・コメントの追加

post

/tasks/{id}/comments

タスクにコメントを追加します。

リクエスト

サポートされているメディア・タイプ
本文()
本文パラメータはcommentStrです
ルート・スキーマ: schema
リクエストの例(application/json)
{
    "commentStr":"This is a new comment"
}
トップに戻る

レスポンス

サポートされているメディア・タイプ

200レスポンス

成功
本文()
ルート・スキーマ: schema
レスポンスの例(application/json)
{
    "levels":0,
    "links":[
        {
            "href":"http://example.com/bpm/api/3.0/tasks/200000",
            "length":0,
            "rel":"back"
        },
        {
            "href":"http://example.com/bpm/api/3.0/tasks/200000/comments",
            "length":0,
            "rel":"self"
        }
    ],
    "comment":[
        {
            "commentStr":"This is my first comment",
            "updatedBy":"John Steinbeck",
            "userId":"jstein",
            "updateddDate":"2015-03-24 00:55:28"
        }
    ]
}
トップに戻る