> ## Documentation Index
> Fetch the complete documentation index at: https://developer.surefeedback.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Reply to comment

> Add a reply to an existing comment.

Adds a reply to an existing comment thread. All participants in the thread are notified.

## Path parameters

<ParamField path="id" type="string" required>
  UUID of the parent comment.
</ParamField>

## Request body

<ParamField body="content" type="string">
  Reply text content. Required when no attachments are provided.
</ParamField>

<ParamField body="is_private" type="boolean">
  Whether the reply is private. Default: `false`.
</ParamField>

<ParamField body="attachments" type="array">
  Optional attachment payload. At least one of `content` or `attachments` must be provided.
</ParamField>

<ResponseExample>
  ```json 201 theme={null}
  {
    "success": true,
    "message": "Reply created successfully",
    "data": {
      "reply": {
        "id": "aa0e8400-e29b-41d4-a716-446655440005",
        "comment_id": "990e8400-e29b-41d4-a716-446655440004",
        "content": "I can reproduce this on Safari 17 as well.",
        "priority": "MEDIUM",
        "created_by": { "id": "...", "name": "Jane Smith" },
        "created_at": "2026-03-02T13:00:00Z"
      }
    }
  }
  ```
</ResponseExample>
