Version 0.1
Update a comment
PATCH /projects/:project-id/tasks/:task-id/comments/:comment-id
Update the given comment
Parameters
body
the comment body (supports markdown)
Response
The TaskComment object.
Example
Request
PATCH /projects/15/tasks/178/comments/65168?v=0.1
Host: api.deftask.com
Content-Type: application/x-www-form-urlencoded
body=quux
Response
200 OK
Content-Type: application/json
{
"projectId": 15,
"taskId": 178,
"commentId": 65168,
"body": "quux",
"bodyHtml": "<p>quux</p>\n",
"creator": 1,
"createdAt": "2018-10-09T22:32:36.062827+05:30",
"updater": 1,
"updatedAt": "2018-10-09T22:32:36.062828+05:30"
}