curl --request GET \
--url https://app.usequeue.com/api/v1/task_comments/{task_comment_id}/comments \
--header 'Authorization: Bearer <token>'{
"success": true,
"comments": [
{
"id": "abcd1234",
"comment": "This is a comment on a task",
"created_at": "2025-07-25T14:32:00Z",
"updated_at": "2025-07-25T15:00:00Z",
"user": {
"id": "user_123",
"username": "johndoe",
"avatar": "https://example.com/avatar.png"
}
}
]
}curl --request GET \
--url https://app.usequeue.com/api/v1/task_comments/{task_comment_id}/comments \
--header 'Authorization: Bearer <token>'{
"success": true,
"comments": [
{
"id": "abcd1234",
"comment": "This is a comment on a task",
"created_at": "2025-07-25T14:32:00Z",
"updated_at": "2025-07-25T15:00:00Z",
"user": {
"id": "user_123",
"username": "johndoe",
"avatar": "https://example.com/avatar.png"
}
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List of nested task comment replies
true
Show child attributes
"abcd1234"
"This is a comment on a task"
"2025-07-25T14:32:00Z"
"2025-07-25T15:00:00Z"