Skip to main content

The Comment object

The Comments API allows you to manage comments within tasks on a board. With this API, you can create, retrieve, update, and delete comments associated with specific tasks. Each comment belongs to a task and is identified by a unique ID.

Attributes

author
string
expandable
ID of the user that created the comment.
content
string
Content of the comment.
task
string
expandable
ID of the comment task.
board
string
expandable
ID of the comment board.
created_at
string
Time at which the comment was created.
format
enum
The comment format. One of text, html.
id
string
Unique identifier for the comment.
updated_at
string
Time at which the comment was last updated.
The Comment object
{
"author": "u_c01bb6102b6ddadd4b1f020e",
"board": "tskb_1lbg89ha9ttb5dmxuldku3nx",
"task": "tsk_1lbg89ha9ttb5dmxuldku3nx",
"content": "The comment content",
"created_at": "2024-01-23T23:09:00+00:00",
"format": "text",
"id": "msg_3447589816730d8ba4e50528",
"updated_at": "2024-01-23T23:09:00+00:00"
}