Create Comment
Create a new comment on a note. Supports nested/threaded comments through theparent_comment parameter.
Headers
Bearer token for authentication
Body Parameters
The ID of the note to comment on
The text content of the comment
Optional ID of parent comment for creating nested replies
Response
Success message
The created comment object
Unique identifier for the comment
The comment text
ID of the note this comment belongs to
ID of the user who created the comment
ID of parent comment if this is a reply, null otherwise
Timestamp when comment was created
Timestamp when comment was last updated
Response Example
Error Responses
Error message
HTTP status code
Get Comments
Retrieve all comments for a specific note, organized in a threaded/nested structure.Headers
Bearer token for authentication
Query Parameters
The ID of the note to fetch comments for
Response
Success message
Array of top-level comments with nested replies
Unique identifier for the comment
The comment text
ID of the note this comment belongs to
ID of the user who created the comment
Always null for top-level comments
Nested array of reply comments (same structure as parent)
Timestamp when comment was created
Timestamp when comment was last updated
Response Example
Comments are returned in a nested structure where
replies contain all child comments. This allows for infinite nesting depth in threaded discussions.