Get All Replies on a Comment

Written By Team BugSmash

Last updated 9 days ago

METHOD: GET
URL: https://api.bugsmash.io/api/v2/comment/{commentId}/replies

HEADERS:
  X-API-Key: YOUR_API_KEY
  Content-Type: application/json

PATH PARAMETERS:
  commentId  (uuid, required)  - The comment ID

QUERY PARAMETERS:
  plain_text  (boolean, optional)  - Pass true to receive plain text instead of HTML

CURL:
curl --location 'https://api.bugsmash.io/api/v2/comment/{commentId}/replies?plain_text=true' \
--header 'X-API-Key: YOUR_API_KEY'

RESPONSE:
{
  "status": true,
  "message": "Replies data",
  "data": [
    {
      "comment_id": "e5f6a7b8-c9d0-1234-efab-234567890124",
      "comment": "Agreed, will fix this in the next revision.",
      "comment_number": null,
      "status": "Active",
      "created_at": "2026-04-06T19:53:13.000000Z",
      "updated_at": "2026-04-06T19:53:13.000000Z",
      "is_private": 0,
      "comment_by_name": "John Doe",
      "comment_by_email": "user@example.com",
      "priority": "Unset",
      "attachment_file_url": null
    },
    {
      "comment_id": "f6a7b8c9-d0e1-2345-fabc-345678901235",
      "comment": "Thanks for the note, updating now.",
      "comment_number": null,
      "status": "Active",
      "created_at": "2026-04-06T19:53:18.000000Z",
      "updated_at": "2026-04-06T19:53:18.000000Z",
      "is_private": 0,
      "comment_by_name": "Jane Smith",
      "comment_by_email": "reviewer@example.com",
      "priority": "Unset",
      "attachment_file_url": null
    }
  ]
}