Skip to main content
POST
/
comments
/
{id}
/
reply
Reply to comment
curl --request POST \
  --url https://api.surefeedback.com/api/v1/comments/{id}/reply \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "content": "<string>",
  "is_private": true,
  "attachments": [
    {}
  ]
}
'
{
  "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"
    }
  }
}

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.

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

Path parameters

id
string
required
UUID of the parent comment.

Request body

content
string
Reply text content. Required when no attachments are provided.
is_private
boolean
Whether the reply is private. Default: false.
attachments
array
Optional attachment payload. At least one of content or attachments must be provided.
{
  "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"
    }
  }
}