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"
}
}
Add a reply to an existing 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"
}
}
{
"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"
}
}
Was this page helpful?