clickup · Schema

CreateCommentRequest

Request body for creating a new comment.

Properties

Name Type Description
comment_text string The plain text content of the comment.
assignee integer User ID to assign for follow-up.
notify_all boolean Notify all members who have access to the resource.
View JSON Schema on GitHub

JSON Schema

clickup-createcommentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateCommentRequest",
  "title": "CreateCommentRequest",
  "type": "object",
  "required": [
    "comment_text"
  ],
  "description": "Request body for creating a new comment.",
  "properties": {
    "comment_text": {
      "type": "string",
      "description": "The plain text content of the comment."
    },
    "assignee": {
      "type": "integer",
      "description": "User ID to assign for follow-up."
    },
    "notify_all": {
      "type": "boolean",
      "description": "Notify all members who have access to the resource."
    }
  }
}