Delete a Task Comment
DELETE/api/tasks/{task_id}/comments/{comment_id}
Deletes a task comment. Requires the Tasks "delete" 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). |
curl -X DELETE "https://yoursite.com/api/tasks/123/comments/123" \
-H "authtoken: YOUR_API_TOKEN" Success-Response:
HTTP/1.1 200 OK
{ "status": true, "message": "Comment deleted successfully" }