Comments (LP Classic)

This documentation is for LiquidPlanner Classic: app.liquidplanner.com

Example: Change the text of a comment (update a comment)

To update a comment, use the PUT HTTP method and specify the task comment ID.

% curl https://app.liquidplanner.com/api/v1/workspaces/:id/comments/:id -d '{"comment": {"comment": “changing text…"}}' -X PUT
{
  "comment": “changing text...<br> more text",
  "id":       10941,
  "type":     "Comment",
  "item_id":  79104,
  ...
}
Status: 200