Skip to main content
GET
/
file_comments
/
{file_comment_id}
/
comments
List Replies to File Comment
curl --request GET \
  --url https://app.usequeue.com/api/v1/file_comments/{file_comment_id}/comments \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 3,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "body": "<p>nested reply</p>",
    "user": {
      "username": "<string>",
      "email": "[email protected]",
      "avatar": "<string>"
    },
    "file_comment_id": 97,
    "private": true
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

file_comment_id
string
required

Response

200 - application/json

Nested comments

id
integer
required
Example:

3

created_at
string<date-time>
required
updated_at
string<date-time>
required
body
string
required
Example:

"<p>nested reply</p>"

user
object
required
file_comment_id
integer
Example:

97

private
boolean