v1

latestOpenAPI 3.1.02026-07-24172151607.6 KB
Comments

Get Chat View Comments

View comments from a Chat view.

If you do not include the start and start_id parameters, this endpoint will return the most recent 25 comments.

Use the start and start id parameters of the oldest comment to retrieve the next 25 comments.

get/v2/view/{view_id}/comment

Path parameters

view_idstring required
Example:3c

105 (string)

Query parameters

startinteger

Enter the date of a Chat view comment using Unix time in milliseconds.

start_idstring

Enter the Comment id of a Chat view comment.

Response

Example response

{
  "comments": [
    {
      "id": "459",
      "comment": [
        {
          "text": "View comment content"
        }
      ],
      "comment_text": "View comment content",
      "user": {
        "id": 183,
        "username": "John Doe",
        "initials": "JD",
        "email": "johndoe@gmail.com",
        "color": "#827718",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
      },
      "resolved": false,
      "assignee": null,
      "assigned_by": null,
      "reactions": [],
      "date": "1568036964079",
      "reply_count": "1"
    }
  ]
}