Skip to main content
GET
/
tasks
/
{task_id}
/
task_comments
Get all task comments for a task
curl --request GET \
  --url https://app.usequeue.com/api/v1/tasks/{task_id}/task_comments \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "task_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"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

task_comment_id
string
required

The ID of the specific task comment

Response

200 - application/json

List of task comments

success
boolean
Example:

true

task_comments
object[]