clickup · Schema

UpdateCommentRequest

Request body for updating an existing comment.

Properties

Name Type Description
comment_text string The updated plain text content of the comment.
assignee integer User ID to assign for follow-up.
resolved boolean Whether to mark the comment as resolved.
View JSON Schema on GitHub

JSON Schema

clickup-updatecommentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateCommentRequest",
  "title": "UpdateCommentRequest",
  "type": "object",
  "description": "Request body for updating an existing comment.",
  "properties": {
    "comment_text": {
      "type": "string",
      "description": "The updated plain text content of the comment."
    },
    "assignee": {
      "type": "integer",
      "description": "User ID to assign for follow-up."
    },
    "resolved": {
      "type": "boolean",
      "description": "Whether to mark the comment as resolved."
    }
  }
}