The Comment object
The Comments API allows you to manage comments within cards on a board. With this API, you can create, retrieve, update, and delete comments associated with specific cards. Each comment belongs to a card and is identified by a unique ID.
Attributes
author
string
ID of the user that created the comment.
content
string
Content of the comment.
card
string
ID of the comment card.
board
string
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",
"card": "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"
}