Update a comment

PUT /io/card/:cardId/comment/:commentId

Update a comment.

Example Request

1{
2    "text": "Sample comment body with updates"
3}

Example Successful Response

200 OK

01{
02    "id": "947429871",
03    "createdOn": "2019-12-11T20:23:17Z",
04    "createdBy": {
05        "id": "478440842",
06        "emailAddress": "user@leankit.com",
07        "fullName": "First Last",
09    },
10    "text": "Sample comment body with updates"
11}