Update a Task Comment
PUT/api/tasks/{task_id}/comments/{comment_id}
Updates the text of an existing task comment. Requires the Tasks "put" permission.
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| task_id | Number | Task unique ID (URL segment). |
| comment_id | Number | Comment unique ID (URL segment). |
| content | String | Mandatory new comment text. |
curl -X PUT "https://yoursite.com/api/tasks/123/comments/123" \
-H "authtoken: YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{ "content": "..." }' Success-Response:
HTTP/1.1 200 OK
{ "status": true, "message": "Comment updated successfully" }