Skip to main content
POST
/
comments
/
reply
Reply to comment
curl --request POST \
  --url https://api.surefeedback.com/api/v1/comments/reply \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "comment_id": "<string>",
  "content": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": "aa0e8400-e29b-41d4-a716-446655440005",
    "comment_id": "990e8400-e29b-41d4-a716-446655440004",
    "content": "I can reproduce this on Safari 17 as well.",
    "created_by": { "id": "...", "name": "Jane Smith" },
    "created_at": "2026-03-02T13:00:00Z"
  }
}
Adds a reply to an existing comment thread. All participants in the thread are notified.

Request body

comment_id
string
required
UUID of the parent comment.
content
string
required
Reply text content.
{
  "success": true,
  "data": {
    "id": "aa0e8400-e29b-41d4-a716-446655440005",
    "comment_id": "990e8400-e29b-41d4-a716-446655440004",
    "content": "I can reproduce this on Safari 17 as well.",
    "created_by": { "id": "...", "name": "Jane Smith" },
    "created_at": "2026-03-02T13:00:00Z"
  }
}